.l-main-section h2 httpInjectables variable p.location-badge. exported from angular2/http defined in angular2/http.ts (line 39) :markdown Provides a basic set of injectables to use the 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()); } } ```