Experimental compiler that transforms a subset of ES6 module syntax into AMD or CommonJS modules. Version 0.3.0, unmaintained since 2015. Key differentiator: early ES6 module syntax experimentation, but the syntax it supports differs from the finalized ES6 spec. No longer recommended for new projects; use Babel or TypeScript instead.
npm install es6-module-transpiler-rhenglesNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to use the Compiler class to transpile ES6 module syntax to AMD and CommonJS.
Migrate to Babel or TypeScript for modern module transpilation.
Use `npx es6-module-transpiler` or install globally via `npm install -g es6-module-transpiler` if available, but prefer library usage.
Write code using only supported syntax: export/import declarations, no destructuring, no default exports for modules.
Run `npm install es6-module-transpiler` and ensure the module is in node_modules.
Use `const { Compiler } = require('es6-module-transpiler');`Run the code through `compile-modules` or use the Compiler class programmatically.
No dependency data recorded yet.