0.2.0 • Published 3 years ago

httpbin-lib v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

httpbin-lib

Lib for httpbin

Install

npm i httpbin-lib

Example

'use strict'

const HttpBinClient = require('httpbin-lib')

const client = new HttpBinClient()

client.invokeGet()
    .then(output => console.log(output))
    .catch(e => console.log(e.message))

client.invokeStream(10)
    .then(s => {
        s.on('data', d => console.log(d))
    })

License

MIT