Having problems with npm V1.0.17. For every npm install <package> it just hangs after
npm verb cache add [ 'express', null ]
npm info addNamed [ 'express', '' ]
npm verb addNamed [ null, '' ]
npm verb GET express
npm verb raw, before any munging express
npm verb url resolving [ 'http://registry.npmjs.org/',
npm verb url resolving './express' ]
npm verb url resolved http://registry.npmjs.org/express
npm verb url parsed { protocol: 'http:',
npm verb url parsed slashes: true,
npm verb url parsed host: 'registry.npmjs.org',
npm verb url parsed hostname: 'registry.npmjs.org',
npm verb url parsed href: 'http://registry.npmjs.org/express',
npm verb url parsed pathname: '/express' }
But when I do the following it works :
curl http://registry.npmjs.org/express and get the tarball url. wget http://registry.npmjs.org/express/-/express-2.4.6.tgz and then run npm install http://registry.npmjs.org/express/-/express-2.4.6.tgz This works.!!! Why is npm install failing?