I am trying to install the library from a private repository and I keep getting an error when trying to use npm.
I use: OSX Mavericks 10.9.3 Node v0.10.28 npm 1.4.10 (this was installed after trying with 1.4.13 and it still doesn't work)
I run this from my home directory, and the ~/.npmrc is in the directory.
whenever i run the command: npm install 'library name here'
I get the following error:
npm http GET https://registry.npmjs.org/dslib-js npm http 404 https://registry.npmjs.org/dslib-js npm ERR! 404 404 Not Found: dslib-js npm ERR! 404 npm ERR! 404 'dslib-js' is not in the npm registry. npm ERR! 404 You should bug the author to publish it npm ERR! 404 npm ERR! 404 Maybe try 'npm search dslib' npm ERR! 404 npm ERR! 404 Note that you can also install from a npm ERR! 404 tarball, folder, or http url, or git url. npm ERR! System Darwin 13.2.0 npm ERR! command "node" "/usr/local/bin/npm" "install" "dslib-js" npm ERR! cwd /Users/marcos.pedreiro npm ERR! node -v v0.10.28 npm ERR! npm -v 1.4.10 npm ERR! code E404 npm ERR! npm ERR! Additional logging details can be found in: npm ERR! /Users/marcos.pedreiro/npm-debug.log npm ERR! not ok code 0
Changes:
When I run ls -a (in the home directory), this is the result:
. .ssh Music .. .subversion Pictures .CFUserTextEncoding .vagrant.d Public .DS_Store Applications VirtualBox VMs .Trash Desktop clients .bash_history Documents dev .gradle Downloads npm-debug.log .matlab Google Drive ~:.npmrc .npm Library ~:.npmrc.template .npmrc.bak Movies
This is the result of the npm config ls -l | grep config npm config ls -l | grep config
; cli configs globalconfig = "/usr/local/etc/npmrc" userconfig = "/Users/marcos.pedreiro/.npmrc"
: End Edits
Any help would be greatly appreciated. Thanks!
source share