用流星执行 unix 命令
executing unix command with meteor
我是流星的新手。
有人会帮助我吗?我如何使用 meteor 运行 Linux 命令?我在另一个 post 中看到过,我推荐使用 :
sys = __meteor_bootstrap__.require('sys');
但我得到了错误,似乎 meteor bootstrap 不需要功能。
基本上来说,您不能简单地 require
来自 Meteor 应用程序的节点模块。解决此问题的最简单方法是使用 meteor:npm
智能包:
meteor add meteorhacks:npm
请阅读文档 here。此外,您可能不需要 sys
模块。尝试使用 child_process
:
https://nodejs.org/api/child_process.html
这是 运行 外部命令的节点标准。
我是流星的新手。 有人会帮助我吗?我如何使用 meteor 运行 Linux 命令?我在另一个 post 中看到过,我推荐使用 :
sys = __meteor_bootstrap__.require('sys');
但我得到了错误,似乎 meteor bootstrap 不需要功能。
基本上来说,您不能简单地 require
来自 Meteor 应用程序的节点模块。解决此问题的最简单方法是使用 meteor:npm
智能包:
meteor add meteorhacks:npm
请阅读文档 here。此外,您可能不需要 sys
模块。尝试使用 child_process
:
https://nodejs.org/api/child_process.html
这是 运行 外部命令的节点标准。