Socket
Socket
Sign inDemoInstall

ensure-node-env

Package Overview
Dependencies
Maintainers
8
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ensure-node-env

A script that helps ensure you have the correct node & npm versions installed in your environment.


Version published
Weekly downloads
3K
decreased by-54.06%
Maintainers
8
Weekly downloads
 
Created
Source

ensure-node-env

Build Status Greenkeeper badge

A script that helps ensure you have the correct node & npm versions installed globally in your environment.

Usage

Add the following to your package.json:

  ...
  "engines": {
    "node": "^10.14.1",
    "npm": "^6.4.1"
  },
  "scripts": {
    "preinstall": "npx ensure-node-env",
    ...

Where the node and npm engine properties specify a valid semver range for Node and npm version respectively.

By default, if you have a node or npm binary installed locally to the project (thus ending up in ./node_modules/.bin), it will take precedence. If you want to check against a globally installed version instead, you can pass the --ignore-local-bin parameter (-i for short).

It's worth noting that, while you may not be directly depending on node or npm packages, you may still have them as transitive dependencies - in any case, ensure-node-env will show which one is being considered and where it comes from.

By default, the script's output is minimal. If you want it to display more information, such as the exact versions being compared, you can pass the --verbose parameter (-v for short).

Usage in libraries

This script is designed to be used as a development-only preinstall check in the project root. For libraries that are published and consumed in other projects it is considered good enough to include it as a pretest check:

npm install ensure-node-env --save-dev
  ...
  "engines": {
    "node": "^10.14.1",
    "npm": "^6.4.1"
  },
  "scripts": {
    "pretest": "ensure-node-env",
    ...

Guide

Skyscanner Node development requires Node LTS and npm ^6.4.1. Nvm users can run nvm use to switch to lts/dubnium. Nave users can use nave auto. You can also download Node LTS using the website.

FAQs

Package last updated on 25 Jan 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc