Tried reading this stacktrace thoroughly but it didn't make me any smarter. Ideas?

sudo npm install jquery

npm ERR! registry error parsing json
npm ERR! error installing jquery@1.6.3 SyntaxError: Unexpected token ILLEGAL
npm ERR! error installing jquery@1.6.3 <html><title>Request timeout</title><body><h1>Request timeout</h1></body></html>
npm ERR! error installing jquery@1.6.3     at Object.parse (native)
npm ERR! error installing jquery@1.6.3     at Request._callback (/usr/local/lib/node_modules/npm/lib/utils/npm-registry-client/request.js:147:21)
npm ERR! error installing jquery@1.6.3     at Request.callback (/usr/local/lib/node_modules/npm/node_modules/request/main.js:99:22)
npm ERR! error installing jquery@1.6.3     at Request.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/main.js:361:18)
npm ERR! error installing jquery@1.6.3     at Request.emit (events.js:64:17)
npm ERR! error installing jquery@1.6.3     at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/main.js:327:16)
npm ERR! error installing jquery@1.6.3     at IncomingMessage.emit (events.js:81:20)
npm ERR! error installing jquery@1.6.3     at HTTPParser.onMessageComplete (http.js:133:23)
npm ERR! error installing jquery@1.6.3     at CleartextStream.ondata (http.js:1228:22)
npm ERR! error installing jquery@1.6.3     at CleartextStream._push (tls.js:303:27)
npm ERR! registry error parsing json
npm ERR! SyntaxError: Unexpected token ILLEGAL
npm ERR! <html><title>Request timeout</title><body><h1>Request timeout</h1></body></html>
npm ERR!     at Object.parse (native)
npm ERR!     at Request._callback (/usr/local/lib/node_modules/npm/lib/utils/npm-registry-client/request.js:147:21)
npm ERR!     at Request.callback (/usr/local/lib/node_modules/npm/node_modules/request/main.js:99:22)
npm ERR!     at Request.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/main.js:361:18)
npm ERR!     at Request.emit (events.js:64:17)
npm ERR!     at IncomingMessage.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/main.js:327:16)
npm ERR!     at IncomingMessage.emit (events.js:81:20)
npm ERR!     at HTTPParser.onMessageComplete (http.js:133:23)
npm ERR!     at CleartextStream.ondata (http.js:1228:22)
npm ERR!     at CleartextStream._push (tls.js:303:27)
npm ERR! Report this *entire* log at:
npm ERR!     <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR!     <npm-@googlegroups.com>
npm ERR! 
npm ERR! System Darwin 11.2.0
npm ERR! command "node" "/usr/local/bin/npm" "install" "jquery"
npm ERR! cwd /Users/fw/nodeprojects/cloudnode/zorro
npm ERR! node -v v0.4.10
npm ERR! npm -v 1.0.106
npm ERR! type unexpected_token
npm ERR! arguments [ 'ILLEGAL' ]
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /Users/fw/nodeprojects/cloudnode/zorro/npm-debug.log
npm not ok
link|improve this question

73% accept rate
Is this still happening? If so, try updating npm to latest. It looks like the error is because it's having issues pulling the package down. If the NPM guys changed their schema a bit between 1.0.106 and now it would explain it. – Ryan Olds Dec 25 '11 at 20:49
This stopped happening, without updating NPM that I believe was already the latest. However, I'm afraid I don't know the reason for it. It could've been because I uninstalled MacPorts ... – Soroush Hakami Dec 28 '11 at 8:24
feedback

1 Answer

I had the same problem. Looks like we have to use

npm install jQuery

instead of

npm install jquery

Thanks to coolaj86.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.