Http service in any application.
    
    #Example
    
    ```
    import {httpInjectables, Http} from 'angular2/http';
    @Component({selector: 'http-app', appInjector: [httpInjectables]})
    @View({template: '{{data}}'})
    class MyApp {
      constructor(http:Http) {
        http.request('data.txt').subscribe(res => this.data = res.text());
      }
    }
    ```