Babel Webpack Starter KIT
Overwhelmed by how much time you need to set-up new project before you focus on the real implementation?
This project is to help you with that.
You can start with any type of project.
This project is framework agnostic.
Add any framework you like (if you need one).
ECMAScript 2015 / ES6 + ES7 Ready!
List of included components:
- Set-Up
- webpack + babel
- editorconfig
- ESLint
- Gulp tasks
webpack-dev-server
release
- Quality Assurance
- Unit Tests
- karma
- mocha
- chai
- sinon
- GIT Hooks
pre-commit
What you need to run this app:
- nvm (optional)
node
Use this method when you would like to only use this project to start your own one
Steps:
git clone --depth 1 --origin workflow https://github.com/bogwro/workflow-babel-webpack.git NAME_OF_YOUR_PROJECT
cd NAME_OF_YOUR_PROJECT
rm -rf .git
git init
git remote add origin USER@HOST:YOUR_GIT_REPOSITORY
# now apply your changes before first commit
git add .
git commit -m 'initial commit'
git fetch origin
git push -u origin master
Use this method when you would like to build your own workflow based on this one.
Use this method when you would like to contribute to this project.
Steps:
fork
this repoclone
your fork
Use this method when you cannot use
git
Download it from GitHub
nvm install
(optional)nvm use
(optional)npm install
to install all dependenciesnpm start
to start the dev server- extend with your own logic
- enjoy!
MIT