npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

node-es-module-loader

v0.3.8

Published

Loads ES modules with CJS interop in Node

Downloads

791

Readme

NodeJS ES Module Loader

Loads ES modules and WebAssembly with CJS interop in Node, roughly according to https://github.com/nodejs/node-eps/blob/master/002-es6-modules.md.

WASM support is currently only provided for Node 8 nightly.

Follows the NodeJS resolution algorithm, loading modules first as CJS and then falling back to ES on import or export syntax failures. This effectively provides the "export {}" assumption to load an ES module.

This does mean a double-parse, over the mjs approach currently being taken by Node.

Built with the ES Module Loader polyfill 1.0 branch at https://github.com/ModuleLoader/es-module-loader.

Installation

npm install -g node-es-module-loader

Usage

Execute an ES module file:

node-esml module.js

For example, where module.js contains:

import fs from 'fs';
import {fn} from './local-es-module.js';
import {wasmFn} from './local-wasm-binary.wasm';

Note that only the default import form for CommonJS modules is supported.

Also supports dynamic loading via the dynamic import syntax:

export function lazyLoad(path) {
  return import(path);
}

Source maps for errors are fully supported through the source-map-support project.

Source maps also work in Node 6 with the node --inspect flag via:

node --inspect node_modules/.bin/node-esml module.js

Programmatic Usage

var NodeESModuleLoader = require('node-es-module-loader');

var loader = new NodeESModuleLoader(/* optional basePath */);

loader.import('x').then(function(m) {
  // ...
});

Caveats

  • Does not currently support the "module" package.json proposal described in the second paragraph at https://github.com/nodejs/node-eps/blob/master/002-es6-modules.md#51-determining-if-source-is-an-es-module
  • Does not allow any loading of ES modules from within CommonJS itself
  • Does not implement global require filtering described in https://github.com/nodejs/node-eps/blob/master/002-es6-modules.md#521-removal-of-non-local-dependencies
  • Does not provide CJS exports as named exports, skipping the algorithm defined in https://github.com/nodejs/node-eps/blob/master/002-es6-modules.md#311-dynamicmodulecreateo this may change, pending Node implementation intentions

Alternative Babel options can be set with a local .babelrc file.

LICENSE

MIT