npm.io
2.1.0 • Published 5 years agoCLI

jsbun

Licence
MIT
Version
2.1.0
Deps
5
Size
26 kB
Vulns
0
Weekly
0
Stars
1

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);