Skip to content

Instantly share code, notes, and snippets.

@mauricionr
Forked from mpj/monad-stream-example.js
Created March 3, 2016 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauricionr/69bac0c5fa36a10976d0 to your computer and use it in GitHub Desktop.
Save mauricionr/69bac0c5fa36a10976d0 to your computer and use it in GitHub Desktop.
This is the code from Monads - episode #21 of FunFunFunction (https://www.youtube.com/playlist?list=PL0zVEGEvSaeFSwPn06GKArptSxiP1Gff8)
const fetch = require('node-fetch')
const Bacon = require('baconjs')
function getInPortuguese(word) {
// Google Translate API is a paid (but dirt cheap) service. This is my key
// and will be disabled by the time the video is out. To generate your own,
// go here: https://cloud.google.com/translate/v2/getting_started
const apiKey =
'AIzaSyB4DyRHIsNhogQXmH16YKbZfR-lTXrQpq0'
const url =
'https://www.googleapis.com' +
'/language/translate/v2' +
'?key=' + apiKey +
'&source=en' +
'&target=pt' +
'&q=' + encodeURIComponent(word)
const promise = fetch(url)
.then(response => response.json())
.then(parsedResponse =>
parsedResponse
.data
.translations[0]
.translatedText
)
const stream = Bacon.fromPromise(promise)
return stream
}
const stream = new Bacon.Bus()
stream
.flatMap(word => getInPortuguese(word))
.map(word => word.toUpperCase())
.onValue(word => console.log(word))
stream.push('cat')
stream.push('meal')
stream.push('trumpet')
// Output of running this file will be:
// TROMBETA
// REFEIÇÃO
// GATO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment