JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1230
  • Score
    100M100P100Q105538F
  • License MIT

Transform CommonJS module into ES module.

Package Exports

  • cjs-es
  • cjs-es/lib/util

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cjs-es) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

cjs-es

Build Status Coverage Status

Transform CommonJS module into ES module.

Features

  • Transform the syntax that is interchangeable between mjs and js e.g. const foo = require("foo") -> import * as foo from "foo";.
  • Hoist the require/exports statement that is not top-level.
  • Transform dynamic imports i.e. Promise.resolve(require("foo")) -> import("foo").
  • Prefer named import/export when possible.

There are more samples under test/cases folder.

Usage

const {parse} = require("acorn");
const {transform} = require("cjs-es");
const code = `
function foo() {}
function bar() {}
module.exports = {foo, bar};
`;
transform({code, parse})
  .then(result => {
    console.log(result.code);
    /* ->
    function foo() {}
    function bar() {}
    export {foo};
    export {bar};
    */
  });

Import style

When binding the module into one identifier:

const foo = require("foo");

The transformer imports all members from the module by default:

import * as foo from "foo";

To import the default member, mark require() as // default:

const foo = require("foo"); // default

Result:

import foo from "foo";

Note that if the identifier is used as the callee of a function/new expression, it would be considered as the default member since the namespace is not callable.

Export style

If the module.exports is assigned with an object pattern:

const foo = "foo";
const bar = "bar";
module.exports = {
  foo,
  bar
};

The transformer converts it into named exports:

const foo = "foo";
const bar = "bar";
export {foo};
export {bar};

To export the entire object as the default member, mark module.exports as // default:

const foo = "foo";
const bar = "bar";
module.exports = { // default
  foo,
  bar
};

Result:

const foo = "foo";
const bar = "bar";
export default {
  foo,
  bar
};

Also note that if you set exportStyle to default, all named exports would be hoisted:

const foo = "foo";
const bar = "bar";
exports.foo = foo;
exports.bar = bar;

Result:

const foo = "foo";
const bar = "bar";
let _exports_ = {};
_exports_.foo = foo;
_exports_.bar = bar;
export default _exports_;

Hoist

If the require/module/exports statement are nested, they would be hoisted. Require statement:

if (foo) {
  require("foo").foo();
}

Result:

import * as _require_foo_ from "foo";
if (foo) {
  _require_foo_.foo();
}

Export statement:

function test() {
  return exports.foo();
}
exports.foo = () => "foo";

Result:

let _exports_ = {};
function test() {
  return _exports_.foo();
}
_exports_.foo = () => "foo";
export default _exports_;

Dynamic import

ES6 lazy load import("...") is async and return a promise. It is interchangeable with Promise.resolve(require("...")) in CommonJS:

module.exports = () => {
  return Promise.resolve(require("foo"));
};

Result:

export default () => {
  return import("foo");
};

API reference

This module exports following members.

  • transform: A function which can convert CJS module synax into ES module syntax.

async transform(options?: object): TransformResult object

options has following members:

  • parse?: function. A parser function which can parse JavaScript code into ESTree.

  • code: string. The JavaScript source code.

  • ast?: AST object. If set then ignore options.parse.

  • sourceMap?: boolean. If true then generate the source map. Default: false

  • importStyle?: string or function -> string. The result must be "named" or "default". Default: "named"

    When the value is a function, it recieves one argument:

    • moduleId: string. The module ID of require("module-id").
  • exportStyle?: string or function -> string. The result must be "named" or "default". Default: "named"

  • nested?: boolean. If true then analyze the entire AST, otherwise only top-level nodes are visited. If there is no nested require/exports/dynamic import statements, it is safe to keep it off. Default: false.

  • warn?: function. This function is called when the transformer emmits a warning. The arguments are:

    • message: string. Warning message.
    • pos: number. The position of the current node.

    If undefined, the transformer would use global console.error.

options.importStyle and options.exportStyle could be async, and the return value would be cached (for importStyle, the value is cached for each moduleId).

The result object has following members:

  • code: string. The result JavaScript code.
  • map?: object. The source map object generated by magicString.generateMap. If isTouched or options.sourceMap is false then the map is null.
  • isTouched: boolean. If false then the code is not changed.

If an error is thrown during walking the AST, the error has a property pos which points to the index of the current node.

Changelog

  • 0.4.3 (May 1, 2018)

    • Fix: reassigned import is not a namespace.
    • Add: options.warn.
    • Add: warn users for unconverted require.
    • Add: support rename for declared named import.
    • Add: support declared export const foo = module.exports = ....
  • 0.4.2 (Apr 30, 2018)

    • Fix: template tag is callable.
  • 0.4.1 (Apr 30, 2018)

    • Fix: syntax error if exported value is enclosed by parentheses.
  • 0.4.0 (Apr 30, 2018)

    • Rewrite for async. options.importStyle and options.exportStyle are async now.
    • Change: transform function is async now.
    • Drop: options.hoist, options.dynamicImport.
    • Add: options.nested.
    • Fix: namespace is not callable.
  • 0.3.3 (Apr 29, 2018)

    • Add: options.ast.
  • 0.3.2 (Apr 28, 2018)

    • Add: expose .node property for tree-walk error.
    • Fix: hoist named export if prefer default + hoist.
    • Fix: hoist named require if prefer default + hoist.
    • Fix: declare.init could be null.
  • 0.3.1 (Apr 28, 2018)

    • Fix: error while binding default export to object pattern.
  • 0.3.0 (Apr 27, 2018)

    • Merge cjs-hoist.
    • Add: hoist option.
    • Add: dynamicImport option.
  • 0.2.2 (Apr 26, 2018)

    • Add: isTouched property.
  • 0.2.1 (Apr 26, 2018)

    • Add: transform top-level require call.
  • 0.2.0 (Apr 26, 2018)

    • Change: don't suppress parse error.
    • Change: remove // all comment.
    • Add: importStyle, exportStyle option.
    • Add: use // default to change import/export style.
  • 0.1.0 (Apr 25, 2018)

    • Initial release.