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 服务器的推荐方式是什么?问题是大多数服务器无法直接访问npm 注册表。是否可以安装一个私人仓库,与官方同步,然后从这里同步内部服务器?
最佳实践是将 node_modules 检入 git 存储库(从 .gitignore 中删除 node_modules)。然后,只有您的开发人员机器需要访问 npm.org,服务器将从您的内部 git 存储库获取包。