es-start-kit
v0.0.2
Published
* Most of the source code are copy from [create-react-app](https://github.com/facebookincubator/create-react-app). * Use [whatwg-fetch](https://github.com/github/fetch) and [promise-polyfill](https://github.com/taylorhakes/promise-polyfill) polyfills. * U
Readme
A convenient module that help you transform ES2015+ into ES5
- Most of the source code are copy from create-react-app.
- Use whatwg-fetch and promise-polyfill polyfills.
- Use fast-async to transform the
async/awaitfeature toPromisechain. - Currently focus on browser only.
Usage
Install
yarn add es-start-kitOr if you don't use yarn
npm install es-start-kit --save-devCurrently, you must have an directory src in the project root and an entry.js file as the project's entry.
Then you can use the es-load in your package.json like
"scripts": {
"build" : "es-load"
}