An open API service indexing awesome lists of open source software.

https://github.com/elsehow/kefir-get

GET requests as a kefir stream. in node + the browser!
https://github.com/elsehow/kefir-get

Last synced: about 1 year ago
JSON representation

GET requests as a kefir stream. in node + the browser!

Awesome Lists containing this project

README

          

# kefir-get

GET requests as kefir stream, in node and the browser

## installation

`npm install kefir-get`

## usage

```javascript

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.