I've installed Node.js on my Windows 7 x64 development machine, the manual way:
mkdir C:Devel
odejs
cd C:Devel
odejs
set NODE_PATH=%CD%
setx /M PATH "%PATH%;%NODE_PATH%"
setx /M NODE_PATH "%NODE_PATH%
ode_modules"
I've placed the main node x64 binary along with npm package manager in C:Devel
odejs
. Works like a charm and I can update the main binary without dealing with the installer.
The only problem I can't solve is moving the cache folder. When I install a local package:
npm install express
... cache is placed under %APP_DATA%
pm-cache
folder. I'd like to change it to:
C:Devel
odejs
pm-cache
How can I change the npm cache folder, or disable it completely?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…