npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

bare-bundle-compile

1.2.2

@kasperisager

npmHomeRepoSnykSocket
Downloads:1061
$ npm install bare-bundle-compile
DailyWeeklyMonthlyYearly

bare-bundle-compile

Compile a bundle of CommonJS modules to a single module.

npm i bare-bundle-compile

Usage

const Bundle = require('bare-bundle')
const compile = require('bare-bundle-compile')

const bundle = new Bundle()
  .write('/foo.js', "module.exports = require('./bar')", {
    main: true,
    imports: {
      './bar': '/bar.js'
    }
  })
  .write('/bar.js', 'module.exports = 42')

eval(compile(bundle)).exports
// 42

API

const code = compile(bundle)

License

Apache-2.0