https://github.com/gsans/qcon-ng2-workshop
Based on angular2-webpack-starter (webpack + TypeScript)
https://github.com/gsans/qcon-ng2-workshop
Last synced: 7 months ago
JSON representation
Based on angular2-webpack-starter (webpack + TypeScript)
- Host: GitHub
- URL: https://github.com/gsans/qcon-ng2-workshop
- Owner: gsans
- License: mit
- Created: 2016-03-08T11:54:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-11T03:16:10.000Z (over 9 years ago)
- Last Synced: 2025-01-26T17:32:04.464Z (9 months ago)
- Language: TypeScript
- Size: 210 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#QCon London | Workshop - Angular 2
[Instructions and Setup](http://bit.ly/qcon-workshop-doc)
> Based on https://github.com/angular-class/angular2-webpack-starter.
```
qcon-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)