我尝试使用npm-container https://github.com/meteorhacks/npm在meteor上运行的app中集成本地节点模块 这似乎不可能。我尝试使用" name":" file:path-to-local-module"但是npm-container需要指定版本。 任何线索?
答案 0 :(得分:0)
使用命令
将meteor版本升级到1.3 beta版本meteor update --release 1.3-beta.12
然后你不需要meteorhacks包来添加npm模块。 基本上这将安装一个名为' modules'这将照顾捆绑所有的j。
根据README说:
在Meteor 1.3之前,Meteor中node_modules目录的内容 应用程序代码完全被忽略。启用模块时 那些无用的node_modules目录突然变得无限多了 有用:
meteor create modular-app
cd modular-app
mkdir node_modules
npm install moment
echo 'import moment from "moment";' >> modular-app.js
echo 'console.log(moment().calendar());' >> modular-app.js
meteor