Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

amd-codemod

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amd-codemod

Converts amd modules to es6 modules

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

A codemod for jscodeshift that will convert amd modules to es6 ones.

Usage

  1. npm install -g jscodeshift
  2. npm install amd-codemod
  3. jscodeshift -t node_modules/amd-codemod [files]

Example Input -> Output

Module Imports
 // input
define([
    "some/module",
    "some/other/module"
], (
    SomeModule,
    SomeOtherModule
) => {
    
});

// output
import SomeModule from "some/module";
import SomeOtherModule from "some/other/module";
Default Return
// input
define([], () => {
    return 'some-value';
});

// output
export default 'some-value';
exports
// Input
define(['exports'], (
    exports
) => {
    exports.someProp = "some-value";
    exports.anotherProp = "another-value";
});

// Output
export const someProp = "some-value";
export const anotherProp = "some-value";
export default {someProp, anotherProp};

Inline requires

// Input 
const myModule = require("some/module");

// Output
import myModule from "some/module";
Async requires

In the case of webpack you can use require.ensure to load code on demand, with webpack 2 you can do this via System.import.

// Input
require.ensure([], () => {
     const myModule = require("some/module");
});

// Output
System.import("some/module").then((someModule) => {
   const myModule = someModule;
});

FAQs

Package last updated on 21 Apr 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc