From fccee7a1e320be73b8506d71f5a507bc83ce60e4 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Thu, 2 May 2013 16:29:26 -0400 Subject: [PATCH] Node does virtual environments using npm --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 498277d646..7d8a61e7b4 100644 --- a/README.md +++ b/README.md @@ -58,12 +58,12 @@ different virtual environments, and your problem is solved. Once again, each language has a different implementation. Python has [`virtualenv`](http://www.virtualenv.org/), Ruby has -[`bundler`](http://gembundler.com/), and Node has -[`nave`](https://github.com/isaacs/nave). For each language, decide -if you want to use a virtual environment, or if you want to install all the -language dependencies globally (and risk conflicts). I suggest you start with -installing things globally until and unless things break; you can always -switch over to a virtual environment later on. +[`bundler`](http://gembundler.com/), and Node's virtual environment support +is built into [`npm`](https://npmjs.org/), it's library management tool. +For each language, decide if you want to use a virtual environment, or if you +want to install all the language dependencies globally (and risk conflicts). +I suggest you start with installing things globally until and unless things +break; you can always switch over to a virtual environment later on. Language Packages -----------------