n-api
v1.2.43
Published
node.js api for running "n" commands
Maintainers
Readme
n-api
node.js api for n (https://www.npmjs.org/package/n). Minor version is in step with n.
Usage
n(<version>)
Switch to the specified node version. Download and Install if not present on system.
var n = require('n-api');
n('latest');
// do some stuffn.prev()
Switch to previously active version
n.ls()
List availble versions;
var list = n.ls(); // [ '0.8.6', '0.8.7', ... '0.11.13' ]n.use(<version>, <cmd>)
Run cmd with the specified version of node.
n.use('0.11.13', 'app.js');n.bin(<version>)
Return the location of the node binary for the specified version, or null
if that version is not installed.o
