GithubHelp home page GithubHelp logo

plumpmath / node-es-module-loader Goto Github PK

View Code? Open in Web Editor NEW

This project forked from moduleloader/node-es-module-loader

0.0 0.0 0.0 22 KB

ES Module Loader Node resolution implementation with CJS interop

JavaScript 100.00%

node-es-module-loader's Introduction

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

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

LICENSE

MIT

node-es-module-loader's People

Contributors

guybedford avatar probins avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.