pundle
πΎ peaceful bundles - js bundler, built from the ground up for speed and extensibility
File Explorer
- config.yml
- sb-communication_vx.x.x.js
- index.js
- .npmignore
- package.json
- create-pundle-app.js
- App.css
- index.js
- favicon.ico
- .gitignore
- index.html
- package.json
- pundle.config.js
- .npmignore
- package.json
- create-pundle-babel-app.js
- App.css
- index.js
- favicon.ico
- .gitignore
- index.html
- package.json
- pundle.config.js
- .npmignore
- package.json
- create-pundle-react-app.js
- App.css
- App.js
- index.js
- favicon.ico
- .gitignore
- index.html
- package.json
- pundle.config.js
- .npmignore
- package.json
- index.js
- validators.js
- common.js
- components.js
- constants.js
- index.js
- job.js
- pundle-error.js
- types.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- helpers.js
- index.js
- .npmignore
- package.json
- .eslintrc.json
- browser.js
- node.js
- helpers.js
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- helpers.js
- pundle.js
- .npmignore
- package.json
- adapter-chokidar.js
- index.js
- index.js
- delegate.js
- index.js
- process.js
- cache.js
- constants.js
- helpers.js
- index.js
- types.js
- watcher.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- readConfigFile.js
- types.js
- validateAndTransformConfig.js
- .npmignore
- package.json
- .eslintrc.json
- hmr-client.js
- helpers.js
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- manifest-registry.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- _empty.js
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- helpers.js
- index.js
- plugin-import-resolver.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- helpers.js
- index.js
- plugin-remove-dead-nodes.js
- plugin-replace-process.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- index.js
- .npmignore
- package.json
- keep
- big-photo.png
- small-photo.png
- haha.json
- imported-from-async-chunk.js
- index.js
- test.coffee
- test.cson
- test.gql
- test.js
- test.json5
- test.toml
- test.yaml
- test2.js
- test3.js
- typescript.ts
- imported-from-less.less
- imported.css
- index.module.css
- non-module.css
- test.css
- test.less
- test.scss
- test.styl
- .babelrc
- .npmignore
- index.html
- package.json
- pundle.config.js
- .eslintrc.json
- _common.js
- build.js
- link-in-directory.js
- .babelignore
- .eslintignore
- .eslintrc.json
- .flowconfig
- .gitignore
- .prettierrc
- babel.config.js
- lerna.json
- package.json
- README.md
- yarn.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm init
View Details βΌ
npm init
Create a `package.json` file.
npm init
Initialize a new package with prompts:
npm init {{[-y|--yes]}}
Initialize a new package with default values:
npm init {{create-react-app}} {{my-app}}
Initialize a new package using a specific initializer:
yarn
View Details βΌ
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
