Skip to content

Instantly share code, notes, and snippets.

@cironunes
Created August 10, 2017 16:17
Show Gist options
  • Save cironunes/0157a90aeeb09566191543ed795b9a0c to your computer and use it in GitHub Desktop.
Save cironunes/0157a90aeeb09566191543ed795b9a0c to your computer and use it in GitHub Desktop.
Angular former Http example
// Http
this.users = this.http.get('https://api.github.com/users')
.map(response => response.json())
.subscribe(data => console.log(data));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment