Angular application with batteries included 🔋. Package contents:
- Webpack as a bundler/general magic worker.
- Babel for future-proof JavaScript 🔥.
- Foundation for Sites for front-end ✨.
- NPM scripts for task management.
- Browsersync for less refreshes.
- Sass compilation.
- Karma as a unit test runner.
- Protractor for end to end tests.
- A Procfile so deploying to Heroku is super easy 😎
- How do I start/run the app? Run
npm start
. - How do I run unit tests? Run
npm test
. - How do I run end to end tests? If the app isn't already running, start the app using
npm start
in one terminal. In another (make sure you have protractor installed globally usingnpm install -g protractor
), runwebdriver-manager update && webdriver-manager start
. In your third terminal, runnpm run test:e2e
.
Originally created by Pixbit with 🔥.