cycle-scripts-es-browserify
v0.7.6
Published
create-cycle-app flavor using ES6 (babel) as language and Browserify as build tool
Downloads
9
Readme
Cycle Scripts ES Browserify
Create-cycle-app core flavor.
Language
ES6
Bundler
Browserify configured with
- Budo dev server
- Live reload
Scripts
npm start
: Start development server listening on port 8000npm test
: Run the default test toolnpm run build
: Generate a production-ready build content, on thebuild
folder (this folder is gitignored)npm run eject
: Copy flavor's dependencies and configurations to the project folder, updatepackage.json
and remove the dependency on the flavoredcycle-scripts
. This is irreversible.
Boilerplate:
The flavor generate the following file structure:
my-awesome-cycle-app/
├── node_modules/
├── public/
│ ├── favicon.ico
│ └── index.html
├── src/
│ ├── app.js
│ ├── app.test.js
│ └── index.js
└── package.json