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.
NPM 私有模块看起来很棒,但我不确定如何在 AWS Beanstalk 实例上安装它们。
有没有这方面的文献发表?
此外,在默认的 Node.js 配置中,Beanstalk 使用 npm 版本 2.7.4。这会是一个问题吗?
好吧,然后在 elastic-beanstalk 的启动命令中将您的存储库(密钥等)添加到配置中.ebextensions/00-my-tasks.config:
.ebextensions/00-my-tasks.config
container_commands: 00-my-task: command: echo "some config" >> /etc/config_of_npm
Idk,这对于 npm 究竟是如何工作的,但是可以使用私有 docker 存储库来做到这一点。您基本上可以在那里“破解”任何东西,包括在需要时更新一些实用程序。我希望它对你有帮助。