nodefy
convert AMD modules into a node.js compatible format.
How?
This tool uses Esprima to parse the code and replace
define()
calls, doing the less amount of changes as possible to the code.
Input
;
Output
var foo = ; var baz = ; var lorem = 'ipsum'; moduleexports = { console; } ;
CLI
You can use it as a CLI tool:
[sudo] npm install -g nodefy
nodefy -o cjs "src/**.js"
This will convert all ".js" files inside the src
folder and put the results
on the cjs
folder.
It also works with stdin
and stdout
:
cat "src/foo.js" | nodefy
For a list of available options run:
nodefy -h
Standalone Lib
It is also available as a regular node.js library.
var nodefy = ; // nodefy.parse(string)// returns node.js style modulevar cjsModule = nodefy; // nodefy.convert(inputPath [, outputPath], callback)// if outputPath is omitted it won't write the resultnodefy; // nodefy.batchConvert(glob [, outputFolder], callback)// if outputFolder is omitted it won't write the resultnodefy;
Inspiration / Why?
I couldn't find any tool that did what I wanted - convert AMD modules into plain node.js - so I decided to code my own. There are alternatives but they all add more complexity than I wanted.
This project was created mainly because of amd-utils, since many methods are useful on both environments.
The name was inpired by browserify.
Features, Goals & Limitations
The Asynchronous Module Definition is very flexible, it supports plugins, many configuration settings to define how modules should be loaded and asynchronous module loading.
This tool aims to convert basic modules, plugins and advanced settings probably are NOT going to be supported in the near future (I have plans to support basic configs, see issue 6). Check the uRequire project in case you need something more complex or create a new feature request on the issues tracker.
Alternatives
License
Released under the MIT license