https://github.com/gsans/angularjsdays-ng2-http-workshop
Based on angular2-webpack-starter (webpack + TypeScript)
https://github.com/gsans/angularjsdays-ng2-http-workshop
Last synced: 7 months ago
JSON representation
Based on angular2-webpack-starter (webpack + TypeScript)
- Host: GitHub
- URL: https://github.com/gsans/angularjsdays-ng2-http-workshop
- Owner: gsans
- License: mit
- Created: 2016-03-20T15:08:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-21T22:41:15.000Z (over 9 years ago)
- Last Synced: 2025-01-26T17:32:36.226Z (8 months ago)
- Language: TypeScript
- Size: 233 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#AngularJS Days | Workshop - Http in Angular 2
[Instructions and Setup](http://bit.ly/angularjs-days-ws-doc)
> Based on https://github.com/angular-class/angular2-webpack-starter.
```
angularjsdays-ng2-http-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)