Compare commits

...

2 Commits

Author SHA1 Message Date
d1eba2e11d 1.0.3 2017-01-29 01:42:23 +01:00
d07ca4e1ab improve README 2017-01-29 01:42:20 +01:00
2 changed files with 25 additions and 2 deletions

View File

@ -21,6 +21,8 @@ dropin replacement for request
## Usage
Use TypeScript for best in class instellisense.
> note: smartrequest uses the **native** node request module under the hood (not the one from npm)
```javascript
import * as smartrequest from 'smartrequest'
@ -36,7 +38,28 @@ let options: smartreqest.ISmartRequestOptions = { // typed options
}
}
smartrequest.post('https://example.com', options)
smartrequest.post('https://example.com', options).then(res => {
console.log(res.status)
console.log(res.body) // if json, body will be parsed automatically
}).catch(err => {
console.log(err)
})
// also available
smartrequest.get(...)
smartrequest.put(...)
smartrequest.del(...)
// streaming
smartrequest.get('https://example.com/bigfile.mp4', optionsArg, true).then(res => { // third arg = true signals streaming
console.log(res.status)
res.on('data', data => {
// do something with the data chunk here
}
res.on('end', () => {
// do something when things have ended
})
})
```

View File

@ -1,6 +1,6 @@
{
"name": "smartrequest",
"version": "1.0.2",
"version": "1.0.3",
"description": "dropin replacement for request",
"main": "dist/index.js",
"typings": "dist/index.d.ts",