https://github.com/fed/angular-boilerplate
Angular 1.x, Browserify, ES6, Grunt & Sass Boilerplate
https://github.com/fed/angular-boilerplate
Last synced: 2 months ago
JSON representation
Angular 1.x, Browserify, ES6, Grunt & Sass Boilerplate
- Host: GitHub
- URL: https://github.com/fed/angular-boilerplate
- Owner: fed
- Created: 2016-01-30T13:54:41.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-11T23:59:43.000Z (over 9 years ago)
- Last Synced: 2025-03-12T03:43:22.521Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Angular 1.x + ES6 Boilerplate

This seed project supports:
* Angular 1.5
* Browserify
* ES6 powered by Babel
* Grunt
* Sass
## Prerequisites
* Node.js (http://nodejs.org/)
## Development Tasks
Run `npm install` the first time you clone this project in order to fetch all the dependencies.
For development purposes, Grunt's default task will automatically watch all of your source files for changes, build the appropriate distribution files and refresh the page for you. To start the app and the watch task, run `npm start`. The application will go live on [http://localhost:6789/](http://localhost:6789/).
To build the app only, run `npm run build` instead. You'll find the distribution files on the `dist` folder.
| Command | Description |
| ------- | ------ |
| `npm install` | Fetch all the dependencies. |
| `npm start` | Start development server and watch for changes. App will go live on http://localhost:6789/ |
| `npm run build` | Build all the things! Check out the `dist` folder. |