New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

adeamdify

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

adeamdify

Another browserify transform that converts AMD to CommonJS based on amdify with module.exports=(function(...){})(require('a'),...).

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

another deAMDify

This module is a browserify plugin that will transform AMD modules into Node.js-style modules so that they can be included in browser-ified bundles.

With this transform in place, Node and AMD modules can be freely intermixed, and the resulting bundle can be used without the need for a separate loader such as RequireJS.

Difference from deAMDify

In order to fix unvariable paramemeter completely (so you can use arguments in your factory functions), the transform format is as following:

define(["a","module","b","require"],function(A,module, B,require){
  ...
})

to:

module.exports=(function(A,module,B,require,){
  ...
})(require('a'),module, require('b'),require)

Install

$ npm install adeamdify

Usage

Command Line

Bundle up all required modules, including AMD modules, into a single file using browserify with the deamdify transform.

browserify -t adeamdify main.js -o bundle.js
API
var browserify = require('browserify');
var fs = require('fs');

var b = browserify('main.js');
b.transform('adeamdify');

b.bundle().pipe(fs.createWriteStream('bundle.js'));
package.json

For packages that are written as AMD modules, add a browserify transform field to package.json and browserify will apply the transform to all modules in the package as it builds a bundle.

{
  "name": "anchor",
  "main": "main",
  "browserify": {
    "transform": "adeamdify"
  }
}

Tests

$ npm install
$ make test

License

The MIT License

Keywords

FAQs

Package last updated on 04 Jan 2015

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