An open API service indexing awesome lists of open source software.

https://github.com/ex-machine/node-wrapper

A wrapper that allows specific Node version to be installed together with other Node versions
https://github.com/ex-machine/node-wrapper

nodejs version

Last synced: about 2 months ago
JSON representation

A wrapper that allows specific Node version to be installed together with other Node versions

Awesome Lists containing this project

README

          

A wrapper that allows specific Node version to be installed together with other Node versions.

## Installation

```
npm i -g @ex-machine/node4
```

## Usage

The same as `node`:
```
node4 --help
```

Local Node can be used in NPM scripts instead of global Node installation:

```
{
"scripts": {
"start": "node4 index.js"
},
"dependencies": {
"@ex-machine/node4": "*"
}
}
```