Socket
Socket
Sign inDemoInstall

bunchee

Package Overview
Dependencies
6
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

bunchee


Version published
Maintainers
1
Install size
12.2 MB
Created

Readme

Source

bunchee

zero config bundler for ES6 syntax library

Bunchee can help you to bundle your code in ES6 syntax into one file with no configuration. It's built on top of rollup and buble. Let you focus on writing code and can generate multiple types of module (commonjs, esmodule) at the same time.

Installation

npm install --save-dev bunchee

Usage

CLI

Usage: bunchee [options]

Options:
  -v, --version          output the version number
  -w, --watch            watch src files changes
  -o, --output <file>    specify output filename
  -f, --format <format>  specify bundle type. esm, cjs, umd. default is esm
  -h, --help             output usage information

Usage:
  $ bunchee ./src/index.js

Use NPM Script

Declare your main field and module field in package.json, then call bunchee cli in build scripts

{
  "main": "dist/pkg.cjs.js",
  "module": "dist/pkg.esm.js",
  "scripts": {
    "build": "bunchee ./src/index.js"
  }
}

Use CLI

cd <project-root-dir>
bunchee ./src/index.js -f cjs -o ./dist/bundle.js

bunchee ./src/index.js -f esm -o ./dist/bundle.esm.js
# if you don't specify format type, default format is ESModule
# bunchee ./src/index.js -o ./dist/bundle.esm.js

Keywords

FAQs

Last updated on 27 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc