0

我不知道我做错了什么,但是尝试使用 npm 安装模块会返回错误。我的具体示例(相同的结果,无论我想安装哪个模块):

npm install socket.io

回报:

npm ERR! TypeError: Cannot call method 'replace' of undefined
npm ERR!     at /usr/local/lib/node_modules/npm/node_modules/read-package-json/read-json.js:332:45
npm ERR!     at fs.js:117:20
npm ERR!     at /usr/local/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js:53:5
npm ERR!     at /usr/local/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js:62:5
npm ERR!     at Object.oncomplete (fs.js:297:15)
npm ERR! If you need help, you may report this log at:
npm ERR!     <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR!     <npm-@googlegroups.com>

npm ERR! System Darwin 11.4.2
npm ERR! command "node" "/usr/local/bin/npm" "install" "socket.io"
npm ERR! cwd /Users/Hassen/www/node/btask
npm ERR! node -v v0.8.16
npm ERR! npm -v 1.1.69
npm ERR! type non_object_property_call
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /Users/Hassen/www/node/btask/npm-debug.log
npm ERR! not ok code 0

任何的想法?提前致谢 :)

4

1 回答 1

3

此错误通常是由当前目录中的 .git 目录引起的,该目录尚未提交。

在重试之前删除目录或至少提交npm一次。

编辑:从此npm 问题页面

此问题已在最新版本中得到修复。请更新到最新的节点和 npm(分别为 v0.8.17 和 v1.2.0)

于 2013-02-04T21:37:55.327 回答