js.sh
v0.5.3
Published
Use a specific version node in the current directory
Downloads
1
Readme
js.sh
Use a specific version node in the current directory.
install
# install globally
npm install -g js.sh# local download
curl -LO "https://github.com/zertosh/js.sh/raw/master/js.sh" && chmod +x js.shdefaults
$NODE_VERSION=v6.0.0usage
js.sh will look in $PWD/vendor for a node installation that matches NODE_VERSION. If it isn't there, it'll download it and continue running your command. The command will run with a PATH and NODE_PATH set to the local node.
# jump into the REPL
js.sh node
# run "npm install"
js.sh npm install
# run "npm install" with a particular version of node
NODE_VERSION=v5.11.0 js.sh npm install
# run a local CLI package (node_modules/.bin)
js.sh browserify app/main.js > public/built.js
# run a nightly node
NODE_VERSION=v6.0.0-nightly201604227940ecfa00 js.sh node
# update npm and then use it
js.sh npm install npm
js.sh npmcredit
Thank you @tomcz!
