A starter kit for angular 1.x apps using ES6.
# clone repo
git clone https://github.com/11ujjawal/angular-seed.git
# change directory to the repo
cd angular-seed
# install dependencies
npm install
# start development server
npm run dev
# build the modules
npm run build
The development server runs at http://localhost:8080/
angular-seed
|--src/
| |--app/
| | |--assets/
| | |--components/
| | |--shared/
| | |
| | |--index.js
| | |--routes.js
| |
| |--public/
| |
| |--sass/
| |
| |--index.html
|
|--.babelrc
|--package.json
|--webpack.config.babel.js
What you need to run this app:
node
andnpm
- Endure that you're running the latest version Node
v4.x.x
and NPM2.x.x
Once you have those, you should install these globals with npm install --global
:
webpack
(npm install --global webpack
)webpack-dev-server
(npm install --global webpack-dev-server
)