kefir-get
v1.0.3
Published
GET requests as a kefir stream, in node and the browser
Downloads
19
Readme
kefir-get
GET requests as kefir stream, in node and the browser
installation
npm install kefir-get
usage
var KefirGet = require('kefir-get')
KefirGet('https://en.wikipedia.org/wiki/Special:RecentChanges')
.map(parseHTML)
.map(articles)
API
KefirGet(url)
returns a stream of responses, or an error. stream ends after a single value.