a pull-stream interface for the `require('nets')` npm module
npm install pull-netsA small pull-stream interface that makes the nets npm module into a source.
For making GET request in the browser or on the server.
```
npm i pull-nets
`js
var nets = require('pull-nets')
var pull = require('pull-stream')
pull(
nets('https://scuttlebutt.nz'),
pull.drain(function (buf) {
console.log(buf.toString())
})
)
`
the nature of nets` is to return a buffer. so the source isn't really
streaming, it runs once and returns a buffer into memory.