https://github.com/gsans/riga-ng2-workshop
Based on angular2-webpack-starter (webpack + TypeScript)
https://github.com/gsans/riga-ng2-workshop
Last synced: 7 months ago
JSON representation
Based on angular2-webpack-starter (webpack + TypeScript)
- Host: GitHub
- URL: https://github.com/gsans/riga-ng2-workshop
- Owner: gsans
- License: mit
- Created: 2016-03-04T09:59:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-04T13:31:18.000Z (over 9 years ago)
- Last Synced: 2025-01-26T17:32:09.072Z (9 months ago)
- Language: TypeScript
- Homepage:
- Size: 211 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#RigaDevDay | Workshop - Deep Dive Into Angular 2
[Instructions and Setup](http://bit.ly/riga-workshop-doc)
> Based on https://github.com/angular-class/angular2-webpack-starter.
```
riga-ng2-workshop/
├──src/
| ├──main.ts * entry file
│ │
| ├──index.html * index page
│ │
│ ├──my-app/ * basic application to explore Angular 2 features.
│ │
│ └──simple-app/ * simple hello world root component.
│ │
│ └──app/ * original app from angular2-webpack-starter.
```You can easily switch between them or add your own by changing the *root component* import in `src/main.ts` (line 21).
```
//src/main.ts17 /*
18 * App Component
19 * our top level component that holds all of our components
20 */
21 import {App} from './my-app/app';
```# License
[MIT](/LICENSE)