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
- Host: GitHub
- URL: https://github.com/ex-machine/node-wrapper
- Owner: ex-machine
- License: mit
- Created: 2019-04-11T23:13:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-13T12:00:10.000Z (about 7 years ago)
- Last Synced: 2025-10-27T13:56:57.771Z (8 months ago)
- Topics: nodejs, version
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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": "*"
}
}
```