https://github.com/gsans/ngconf-codelab
Based on angular2-webpack-starter (webpack + TypeScript)
https://github.com/gsans/ngconf-codelab
Last synced: 7 months ago
JSON representation
Based on angular2-webpack-starter (webpack + TypeScript)
- Host: GitHub
- URL: https://github.com/gsans/ngconf-codelab
- Owner: gsans
- License: mit
- Created: 2016-04-30T18:26:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-05T02:17:52.000Z (over 9 years ago)
- Last Synced: 2025-01-26T17:32:10.202Z (9 months ago)
- Language: TypeScript
- Size: 387 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#ng-conf | Code Lab - New Data Architecture in Angular 2
[Instructions and Setup](http://bit.ly/ngconf-codelab-doc)
> Based on https://github.com/angular-class/angular2-webpack-starter.
```
ngconf-codelab/
├──src/
| ├──main.browser.ts * entry file
│ │
| ├──index.html * index page
│ │
│ ├──my-app/ * basic application to explore Angular 2 features.
│ │
│ └──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.browser.ts` (line 16).
```
//src/main.browser.ts12 /*
13 * App Component
14 * our top level component that holds all of our components
15 */
16 import {App, APP_PROVIDERS} from './my-app';
```# License
[MIT](/LICENSE)