Commit fccee7a1 by David Baumgold

Node does virtual environments using npm

parent 1bda218e
...@@ -58,12 +58,12 @@ different virtual environments, and your problem is solved. ...@@ -58,12 +58,12 @@ different virtual environments, and your problem is solved.
Once again, each language has a different implementation. Python has Once again, each language has a different implementation. Python has
[`virtualenv`](http://www.virtualenv.org/), Ruby has [`virtualenv`](http://www.virtualenv.org/), Ruby has
[`bundler`](http://gembundler.com/), and Node has [`bundler`](http://gembundler.com/), and Node's virtual environment support
[`nave`](https://github.com/isaacs/nave). For each language, decide is built into [`npm`](https://npmjs.org/), it's library management tool.
if you want to use a virtual environment, or if you want to install all the For each language, decide if you want to use a virtual environment, or if you
language dependencies globally (and risk conflicts). I suggest you start with want to install all the language dependencies globally (and risk conflicts).
installing things globally until and unless things break; you can always I suggest you start with installing things globally until and unless things
switch over to a virtual environment later on. break; you can always switch over to a virtual environment later on.
Language Packages Language Packages
----------------- -----------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment