Skip to content

Instantly share code, notes, and snippets.

@vinhlee95
Created November 10, 2019 05:54
Show Gist options
  • Save vinhlee95/1774d5875342f09b6b68096f3014c36b to your computer and use it in GitHub Desktop.
Save vinhlee95/1774d5875342f09b6b68096f3014c36b to your computer and use it in GitHub Desktop.
import {from} from 'rxjs/operators'
const fetchCakesPromise = fetch(getCakesEndpoint, {method: 'GET'}).then(res => res.data.cakes)
// Get cakes stream creation 🌈
const cakeSource = from(fetchCakesPromise)
// Subscribe cake data and consume received cakes 🍽
cakeSource.subscribe(console.log)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment