frontend-code-ready
v1.0.1
Published
Yet another front-end boilerplate to let you focus on code. Powered by Sass & Webpack, Babel ES6/7 support and live reload. Testing ready with Jest.
Downloads
2
Maintainers
Readme
Front-End Code Ready Boilerplate
Yet another front-end boilerplate to let you focus on code.
Features
- Sass stylesheets
- Postcss optimizing the CSS with autoprefixer, css-mqpacker
- JS transpilation with Webpack and Babel
- Jest up and running for tests
- Integrated server with hot reload, powered by nodemon
- Prettier code formatting ready using a precommit hook and travis
- Ready for production build with minified code using terser
- Static build output
Up and running
- Have NodeJS installed
- Install dependencies by
npm i
oryarn
- Build static files by
npm build
oryarn build
- Launch the app by
npm start
oryarn start
- Tests by
npm test
oryarn test