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

https://github.com/hubgit/output-stream

Write data to a CSV or NDJSON file
https://github.com/hubgit/output-stream

csv ndjson stream

Last synced: about 2 months ago
JSON representation

Write data to a CSV or NDJSON file

Awesome Lists containing this project

README

        

# Example usage

```js
const output = require('output-stream')('repositories.ndjson')

require('rest-collection-stream')('https://api.github.com/search/repositories', {
qs: {
sort: 'stars',
order: 'desc',
q: 'language:javascript'
},
headers: {
'User-Agent': 'rest-collection'
}
}).pipe(output)
```