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.
我需要在不允许 Internet 连接的严格控制的生产环境中安装 Node.js 应用程序。
这是否可能,例如通过在某处填充 Node.js 模块缓存?
非常感谢!
我最终采用的解决方案是运行npm install然后压缩整个 Node.js 应用程序文件夹。
npm install
在 node.js 1.0 中,npm 添加了一个选项来决定是全局安装模块还是本地安装模块。去看看这里应该可以解决你的问题...