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 🙏

© 2024 – Pkg Stats / Ryan Hefner

requirejs-esm

v2.4.2

Published

A RequireJS plugin converting JavaScript modules from ESM to AMD.

Downloads

178

Readme

ESM to AMD Plugin for RequireJS

Latest version Dependency status

A RequireJS plugin converting JavaScript modules from ESM to AMD. It takes care only of the module format; it does not transpile the language and that is why it is a lot faster than plugins using Babel. If you need to transpile the code to an earlier ECMAScript version, have a look at requirejs-babel7.

The official RequireJS optimizer (r.js) does not wire up source maps from the original (not transpiled) sources to the source map of the output bundle. It makes this or similar plugins unfeasible for serious work. If you want the proper support for source maps, replace the official optimizer package (requirejs) with the forked @prantlf/requirejs, which is fixed.

An alternative to this plugin is a preprocessor, which converts the module format before RequireJS consumes it. It is a lot less intrusive solution, but it requires a pluggable development web server, so that a plugin (compatible with connect middleware) can be registered in it. See requirejs-esm-preprocessor for more information.

Installation

This module can be installed in your project using NPM, PNPM or Yarn. Make sure, that you use Node.js version 14 or newer.

npm i -D requirejs-esm
pnpm i -D requirejs-esm
yarn add requirejs-esm

Usage

Add the following paths to the RequireJS configuration:

paths: {
  esm: 'node_modules/requirejs-esm/dist/plugin'
}

Reference ESM source files files via the esm! plugin prefix:

define(['esm!your-esm-module'], function (module) {
  // ...
})

You can use the ESM module format in modules loaded by the esm! plugin including the keyword import for loading nested dependencies. The plugin esm! has to be used only in the topmost require or define statement.

This plugin transpiles only ESM source files. If it detects a statement calling functions define, require or require.config on the root level of the source file, it will return the text of the source file as-is. Source files, which are already AMD modules, are assumed to contain ES5 only.

If you use the RequireJS optimizer r.js, you have to bundle the esm plugin without the compiling functionality by adding the following to the RequireJS build configuration:

pragmasOnSave: {
  excludeEsm: true // removes the transpiling code from esm.js
}

See also a demo-local project, which includes sources only from the local src directory:

npm start
open http://localhost:8967/demo-local/normal.html
open http://localhost:8967/demo-local/optimized.html

See also a demo-extern project, which includes sources from the local src directory and from node_modules outside of it:

npm run start
open http://localhost:8967/demo-extern/normal.html
open http://localhost:8967/demo-extern/optimized.html

Advanced

You can customize the default module name resolution with the resolvePath key (see resolvePath for more information) to transpile only modules with a special file extension:

// import * from 'es5module.js'  -> define(['es5module])
// import * from 'es6module.mjs' -> define(['esm!es6module])
fileExtension: '.mjs',
resolvePath: function (sourcePath, currentFile, options, originalResolvePath) {
  // Ignore paths with other plugins applied and the three built-in
  // pseudo-modules of RequireJS.
  if (sourcePath.includes('!') || sourcePath === 'require' ||
      sourcePath === 'module' || sourcePath === 'exports') return

  let lengthWithoutExtension = sourcePath.length - 3
  if (sourcePath.lastIndexOf('.js') === lengthWithoutExtension) {
    return sourcePath.substr(0, lengthWithoutExtension)
  }
  --lengthWithoutExtension
  if (sourcePath.lastIndexOf('.mjs') === lengthWithoutExtension) {
    return 'esm!' + sourcePath.substr(0, lengthWithoutExtension)
  }
}

The default implementation of resolvePath ensures that every JavaScript dependency will be converted:

function (sourcePath) {
  if (sourcePath.includes('!') || sourcePath === 'require' ||
      sourcePath === 'module' || sourcePath === 'exports') return

  return 'esm!' + sourcePath
}

Options

The esm plugin supports configuration with the following defaults:

{
  esm: {
    // Update paths of module dependencies.
    resolvePath: func, // see above
    // Allow using a different plugin alias than `esm` in the source code.
    pluginName: 'esm',
    // The file extension of source files to be transformed.
    fileExtension: '.js',
    // Skip modules already in the AMD format without trying to parse them.
    // Module prefixes like "lib/vendor/" are accepted too. Skipped modules
    // must have all their deep dependencies already transformed.
    skipModules: [],
    // Enforce transpiling even if a optimized module has been loaded.
    mixedAmdAndEsm: false,
    // Suppress transpiling even if an optimized module has not been loaded yet.
    onlyAmd: false,
    // Enable source maps, can be an object with booleans { inline, content }.
    // If set to true, the object will be set to { inline: true, content: true }.
    sourceMap: false,
    // Enable console logging.
    verbose: false,
    // Save a copy of the transformed modules to a directory for debugging purposes.
    debugDir: ''
  }
}

API

The transformation applied by the plugin can be performed programmatically too.

const { transform } = require('requirejs-esm/dist/api')
const { code }  = transform('import a from "a"', 'test', { sourceMap: true })

The transform method supports a subset of plugin options:

{
  // Update paths of module dependencies.
  resolvePath: func,
  // Allow using a different plugin alias than `esm` in the source code.
  pluginName: 'esm',
  // Enable source maps, can be an object with booleans { inline, content }.
  // If set to true, the object will be set to { inline: true, content: true }.
  sourceMap: false
}

The returned object:

{
  // The transpiled module code.
  code: '...',
  // The source map if sourceMap.inline from the options above is false.
  map: undefined | { ... },
  // If the transpilation modified the original source text.
  updated: false | true
}

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Lint and test your code.

License

Copyright (c) 2022 Ferdinand Prantl

Licensed under the MIT license.