Socket
Socket
Sign inDemoInstall

supports-esm

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

supports-esm

Detect at runtime if Node.js supports ECMAScript modules


Version published
Maintainers
1
Created
Source

supports-esm

NPM version build status npm download License

Detect at runtime if Node.js supports ECMAScript modules.

Installation

$ npm install supports-esm

Usage

This library exports true if the current Node.js version is considered to have reasonable support for ESM features, false otherwise.

Version 1.x returns true if the following features are all present:

  • Dynamic imports
  • "exports" field in package.json, including conditional exports
  • Package self-reference

One notable use case is to conditionally execute an ESM or CommonJS entrypoint from a "bin" script, such as a command-line interface authored in ESM and transpiled to CommonJS for backwards compatibility:

'use strict';

const supportsESM = require('supports-esm');

if (supportsESM) {
  import('../src/cli.js').catch((error) => {
    console.error(error);
    process.exit(1);
  });
} else {
  require('../build-cjs/cli.js');
}

This snippet works in all Node.js versions >= 10.0.0.

Keywords

FAQs

Package last updated on 16 May 2020

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