npm install child_process无效

时间:2013-06-01 11:59:56

标签: node.js

我想使用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模块​​还是我拼错了模块名称。

感谢。

2 个答案:

答案 0 :(得分:26)

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

答案 1 :(得分:3)

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