An open API service indexing awesome lists of open source software.

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)

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.ts

17 /*
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)