NPM installerà già i pacchetti locali nei tuoi progetti, ma mi piace comunque tenere il sistema lontano dai file del mio sistema operativo. Ecco come suggerisco di compartimentalizzare i pacchetti Nodejs:
Installa Nodejs e NPM tramite chris-lea PPA. Quindi ho impostato una radice del pacchetto nella mia homedir per contenere i pacchetti "globali" del nodo:
$ NPM_PACKAGES="$HOME/.npm-packages"
$ mkdir -p "$NPM_PACKAGES"
Imposta NPM per utilizzare questa directory per le installazioni dei pacchetti globali:
$ echo "prefix = $NPM_PACKAGES" >> ~/.npmrc
Configura il tuo PATH e MANPATH per vedere i comandi nel tuo prefisso $ NPM_PACKAGES aggiungendo quanto segue al tuo .zshrc / .bashrc:
# NPM packages in homedir
NPM_PACKAGES="$HOME/.npm-packages"
# Tell our environment about user-installed node tools
PATH="$NPM_PACKAGES/bin:$PATH"
# Unset manpath so we can inherit from /etc/manpath via the `manpath` command
unset MANPATH # delete if you already modified MANPATH elsewhere in your configuration
MANPATH="$NPM_PACKAGES/share/man:$(manpath)"
# Tell Node about these packages
NODE_PATH="$NPM_PACKAGES/lib/node_modules:$NODE_PATH"
Ora, quando npm install -g
esegui un , NPM installerà le librerie ~/.npm-packages/lib/node_modules
e collegherà gli strumenti eseguibili in ~/.npm-packages/bin
, che è nel tuo file PATH
.
Usa npm install -g
come faresti normalmente:
[justjake@marathon:~] $ npm install -g coffee-script
... (npm downloads stuff) ...
/home/justjake/.npm-packages/bin/coffee -> /home/justjake/.npm-packages/lib/node_modules/coffee-script/bin/coffee
/home/justjake/.npm-packages/bin/cake -> /home/justjake/.npm-packages/lib/node_modules/coffee-script/bin/cake
coffee-script@1.3.3 /home/justjake/.npm-packages/lib/node_modules/coffee-script
[justjake@marathon:~] $ which coffee
/home/justjake/.npm-packages/bin/coffee