minimum-node-version

3.0.0 • Public • Published

minimum-node-version

Build Status npm page License ISC SemVer 2.0.0 JavaScript Style Guide

Introduction

Figures out the lowest version of Node.js that satisfies engines.node in package.json.

Can be quite useful for which node version to configure babel-preset-env for.

Prerequisite

Node.js, at least v8.0.0, but not v9.

Recommended to install latest via nvm:

nvm install stable

Installation

npm install -g minimum-node-version

CLI Usage

minimum-node-version

Will print the Node.js version.

Programmatic access

You can also import or require the module, and use it programmatically.

import minimumNodeVersion from 'minimum-node-version'

minimumNodeVersion().then(
    version => console.log(version)
)

API

Table of Contents

minimumNodeVersion

Figures out the minimum Node.js version that satisfies the project's configuration.

Returns Promise<String> A Promise of the lowest compatible Node.js version.

Package Sidebar

Install

npm i minimum-node-version

Weekly Downloads

398

Version

3.0.0

License

ISC

Unpacked Size

6.12 kB

Total Files

9

Last publish

Collaborators

  • hugojosefson