.l-main-section p.location-badge. exported from angular2/http defined in angular2/http.ts (line 64) :markdown Provides a basic set of injectables to use the Http service in any application. #Example ``` import {HTTP_BINDINGS, Http} from 'http/http'; @Component({selector: 'http-app', viewBindings: [HTTP_BINDINGS]}) @View({template: '{{data}}'}) class MyApp { constructor(http:Http) { http.request('data.txt').subscribe(res => this.data = res.text()); } } ```