This is cookiecutter template for modified Angular2 Webpack Starter, see below on File structure...
You will be asked about your basic info (project name, description, etc.). This info will be used in your new project.
$ pip install cookiecutter
$ cookiecutter https://github.com/iodevs/cookiecutter-angular2-iodevs.git
$ cd your-project-dir
$ npm install
$ npm start
In scr
directory we have changed structure of directories and files:
app/
├── components/
│ └── app.ts
│
├── directives/
│ └── router-active.ts
│
├── models/
├── styles/
│ ├── index.scss
│ ├── partials/
│ │ ├── _anchors.scss
│ │ ├── _buttons.scss
│ │ └── _inputs.scss
│ │
│ └── views/
│ └── home.scss
│
├── templates/
│ └── home.html
│
├── tests/
│ ├── components/
│ │ ├── app.e2e.ts
│ │ └── app.spec.ts
│ │
│ └── views/
│ ├── about.spec.ts
│ ├── home.e2e.ts
│ └── home.spec.ts
│
├── views/
│ ├── about.ts
│ └── home.ts
│
└── index.ts
MIT license