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.
我在 Express 应用程序中使用 Poet 模块。Poet 尚不支持 Expresss 4,但存在一个补丁,即模块代码的更改。
我应用了那个补丁,我的应用程序在本地运行。
但是 Heroku 加载了原始版本的包,没有补丁。
读完这个问题后,我跑了
heroku run bash cat my-file
它确认 heroku 正在使用错误版本的模块。
如何将更改应用到我的 heroku 应用程序?
在某个 github 存储库中使用路径创建您自己的 npm 模块,然后使用:
npm install --from-git git@server:project
我想这样它应该可以工作:3