webrunify

0.2.0 • Public • Published

webrunify

Bundle a CommonJS module and its dependencies into a single standard ECMAScript module.

Usage

The simplest way to use webrunify is through the command line. To bundle index.js and all its dependencies into an ECMAScript module, simply use these commands:

npm install -g webrunify
webrunify index.js > bundle.js

This example does the same thing using the JavaScript API:

var bs = require('browserify')
var fs = require('fs')
var wr = require('webrunify')
 
var out = fs.createWriteStream('./bundle.js')
var b = bs('./index.js')
b.plugin(wr)
b.bundle().pipe(out)
 

License

Apache-2.0

Package Sidebar

Install

npm i webrunify

Weekly Downloads

1

Version

0.2.0

License

Apache-2.0

Unpacked Size

14.8 kB

Total Files

9

Last publish

Collaborators

  • savelbr