Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Download a specific version of Node.js.
This is cached: if the output directory already has a node
executable, no
download will be performed.
Works on Linux/Mac/Windows.
# Download Node.js latest release
$ get-node
/home/user/.cache/nve/12.10.0/node
$ /home/user/.cache/nve/12.10.0/node
Welcome to Node.js v12.10.0.
Type ".help" for more information.
> .exit
# Download a specific Node.js release
$ get-node 8
/home/user/.cache/nve/8.16.1/node
$ /home/user/.cache/nve/8.16.1/node
> process.version
'v8.16.1'
> .exit
# Any version range can be used
$ get-node 8.12.0
$ get-node '<7'
# Specify the output directory
$ get-node --output=/home/user/.cache/node_releases/ 8
/home/user/.cache/node_releases/8.16.1/node
$ /home/user/.cache/node_releases/8.16.1/node --version
v8.16.1
# Use a mirror website
$ get-node --mirror=https://npm.taobao.org/mirrors/node 8
/home/user/.cache/nve/8.16.1/node
npm install get-node
node >=8.12.0
must already be installed.
get-node [OPTIONS] [VERSION]
VERSION
can be any version range such as
12
, 12.6.0
or <12
.
Alias: -o
Type: string
Default:
global cache directory such as
/home/user/.cache/nve/
.
Output directory for the node
executable.
Alias: -p
Type: boolean
Default: true
Whether to show a progress spinner.
Alias: -m
Type: string
Default: https://nodejs.org/dist
Base URL. Can be overridden (for example https://npm.taobao.org/mirrors/node
).
The following environment variables can also be used: NODE_MIRROR
,
NVM_NODEJS_ORG_MIRROR
, N_NODE_MIRROR
or NODIST_NODE_MIRROR
.
const getNode = require('get-node')
const options = {}
const { path, version } = await getNode('12', options)
console.log(path) // /home/user/.cache/nve/12.10.0/node
console.log(version) // 12.10.0
version
: string
options
: object
Return value: Promise<object>
options
has the same members as the CLI options: output
,
progress
, mirror
The returned Promise
resolves to an object with the following properties:
Type: string
Absolute path to the node
executable.
Type: string
Normalized Node.js version.
nve
: Run a specific Node.js versionnormalize-node-version
:
Normalize and validate Node.js versionsall-node-versions
: List all
available Node.js versionsfetch-node-website
: Fetch
releases on nodejs.orgIf you found a bug or would like a new feature, don't hesitate to submit an issue on GitHub.
For other questions, feel free to chat with us on Gitter.
Everyone is welcome regardless of personal background. We enforce a Code of conduct in order to promote a positive and inclusive environment.
This project was made with ❤️. The simplest way to give back is by starring and sharing it online.
If the documentation is unclear or has a typo, please click on the page's Edit
button (pencil icon) and suggest a correction.
If you would like to help us fix a bug or add a new feature, please check our guidelines. Pull requests are welcome!
ehmicky 💻 🎨 🤔 📖 |
4.0.0
--output
flag
instead of a positional argument on the CLI. This means
get-node VERSION OUTPUT
should now be get-node --output=OUTPUT VERSION
.--help
and --version
CLI flags--progress
CLI flag--mirror
optionFAQs
Download a specific version of Node.js
The npm package get-node receives a total of 0 weekly downloads. As such, get-node popularity was classified as not popular.
We found that get-node demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.