Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法找到当前 node.js 进程的峰值内存使用量?最好是独立于平台的,但其他东西只在 Linux 中?不允许使用额外的工具,例如 valgrind 或其他工具。
您可以使用该process.memoryUsage()方法拍摄快照,并缓存它们。
process.memoryUsage()
process模块的 Node.js 文档
process