13

我想使用 child_process 模块从 node.js 运行脚本但是当我运行命令时

npm install child_process 我收到以下错误:

npm http GET https://registry.npmjs.org/ChildProcess
npm http 404 https://registry.npmjs.org/ChildProcess
npm ERR! 404 'ChildProcess' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it

只是想知道 child_process 模块是被删除还是我拼错了模块名称。

谢谢。

4

2 回答 2

30

您不必将其作为模块安装,它与 node.js 捆绑在一起。http://nodejs.org/api/child_process.html

于 2013-06-01T12:02:47.977 回答
4

我在https://www.npmjs.com/browse/keyword/child_process中搜索,没有关于 child_process 的内容。只需 require('child_process') 并使用它。

于 2015-07-01T09:04:57.983 回答