Skip to content

markwylde/jsbun

Repository files navigation

jsbun

An extremely lightweight bundler that does nothing but merge your js files using commonjs.

Installation

npm install --save-dev jsbun

(or) globally:

npm install -g jsbun

Example

The best example is the npm test scenario used in this project.

Usage

CLI

jsbun -o bundled.js js/index.js

Optional arguments are:

--watch (-w) [pattern]         rerun when the files change (default pattern is '**/*.js')
--output (-o) fileName         output the bundle to a file instead of to stdout

Code

const jsbun = require('jsbun');
const bundled = await jsbun('./js/index.js');
console.log(bundled);

About

An extremely lightweight bundler that does nothing but merge your js files using commonjs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published