Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@babel/plugin-transform-modules-amd
Advanced tools
This plugin transforms ES2015 modules to AMD
The @babel/plugin-transform-modules-amd package is a plugin for Babel, a JavaScript compiler, that transforms ES2015+ modules to Asynchronous Module Definition (AMD) format. This is particularly useful for integrating modern JavaScript codebases with systems that require or benefit from the AMD module pattern, such as certain web browsers and JavaScript environments.
Transform ES Modules to AMD
This feature automatically converts ES2015+ import statements into AMD `define` calls, making it easier to integrate with AMD-based module systems.
import { sum } from './math';
console.log(sum(1, 2));
// Transforms to:
define(['./math'], function (_math) {
console.log(_math.sum(1, 2));
});
Dynamic Import Support
Supports the transformation of dynamic `import()` syntax to AMD's `require` calls, enabling code splitting and lazy loading of modules in AMD environments.
import('./math').then(math => {
console.log(math.sum(1, 2));
});
// Transforms to:
require(['./math'], function (math) {
console.log(math.sum(1, 2));
});
This package transforms ES2015+ modules to CommonJS modules, similar to how @babel/plugin-transform-modules-amd transforms modules to AMD format. It's useful for environments that support CommonJS modules, offering an alternative module system transformation.
Similar to the AMD plugin, this Babel plugin transforms ES2015+ modules to Universal Module Definition (UMD) format. UMD modules are compatible with both CommonJS and AMD environments, making this plugin a versatile choice for projects that need to support multiple module systems.
This plugin transforms ES2015+ modules to SystemJS format, another module loader system that can be used in the browser. It's an alternative to AMD for developers looking for dynamic loading and other advanced module loading features in the browser.
This plugin transforms ES2015 modules to Asynchronous Module Definition (AMD).
In
export default 42;
Out
define(["exports"], function (exports) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = 42;
});
npm install --save-dev @babel/plugin-transform-modules-amd
.babelrc
(Recommended).babelrc
{
"plugins": ["@babel/transform-modules-amd"]
}
babel --plugins @babel/transform-modules-amd script.js
require("@babel/core").transform("code", {
plugins: ["@babel/transform-modules-amd"]
});
See options for babel-plugin-transform-commonjs
.
FAQs
This plugin transforms ES2015 modules to AMD
The npm package @babel/plugin-transform-modules-amd receives a total of 4,453,100 weekly downloads. As such, @babel/plugin-transform-modules-amd popularity was classified as popular.
We found that @babel/plugin-transform-modules-amd demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.