I'm searched in the modules wiki of node, and i can't find anything similar to virtualenv (python) or rvm.
Anyone here separates node.js in their own env? I really don't like to install npm system-wide.
I'm searched in the modules wiki of node, and i can't find anything similar to virtualenv (python) or rvm.
Anyone here separates node.js in their own env? I really don't like to install npm system-wide.
If having system wide npm packages is your main issue, then maybe consider using the very cool 'bundle' command with npm. This is closer to freezing gems or using bundler in rails, rather than rvm.
It's super easy. Just create a package.json file:
{ "name": "yourapp, "version": "0.0.1", "dependencies": {"jade": "0.4.1"}}
and then run:
npm bundle vendor
to freeze into the vendor directory. and then use:
require.paths.unshift('./vendor');