NPM

Der Node Package Manager ist der Standard zum managen von Node Pachages.

Installation

curl http://npmjs.org/install.sh | sh

oder

git clone http://github.com/isaacs/npm.git
cd npm
sudo make install

Nach der Installation kann npm auf der Konsole verwendet werden.

npm install <package>
npm rm <package>
npm view <package>
npm ls installed
npm ls stable
npm ls installed stable

npm ls [filter]
npm ls fug
npm ls @1.0

Leave a Reply