Express:Heroku上的自定义node_module

时间:2014-08-01 13:07:51

标签: node.js heroku express poet

我在Express应用程序中使用Poet模块。 Poet还不支持Expresss 4,但是补丁存在,模块代码发生了变化。

我应用了该补丁,我的应用在本地工作。

但是Heroku加载了包的原始版本,没有补丁。

阅读this question后,我运行

heroku run bash
cat my-file

它确认heroku正在使用错误版本的模块。

如何将更改应用于我的heroku应用程序?

1 个答案:

答案 0 :(得分:1)

使用路径在某个github repo上创建你自己的npm模块,然后使用:

 npm install --from-git git@server:project

我猜这应该有用:3