0.0.8 • Published 10 years ago

demodule v0.0.8

Weekly downloads
11
License
(K)
Repository
-
Last release
10 years ago

Demodule - CommonJS for the browser!

A simple tool to package javascript files into one using CommonJS module specification. If you want to structure your browser client code using CommonJS (like NodeJS's 'require()'), this is for you.

  • Explicitly define which files to include
  • Recursive require() support
  • Minimization

Example

This is a sample build script using Demodule. You can see the full example in the example folder.

var demodule = require("demodule");
var fs = require("fs");

var dependencies = [
    // a single file
    {name:"app", path:"./app.js"},

    // a library from NPM
    {name:"underscore", path:"./node_modules/underscore/underscore.js"},

    // a whole directory, recursively.
    {name:"lib", path:"./lib"},

    // another whole directory
    {name:"foo", path:"./foo"},
];

var entry = 'require("app").run();';

var code = demodule(dependencies, entry, {minify: false, debug:true});

var err = fs.writeFileSync("build/app.js", code);

if (err) { throw(err); }

Installation

Requires NodeJS.

See the example app for usage.

0.0.8

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

11 years ago

0.0.1

11 years ago