Compare commits

...

4 Commits

Author SHA1 Message Date
2ef0f378d7 1.0.4 2017-01-29 01:44:31 +01:00
3a08f262d0 fix README 2017-01-29 01:44:29 +01:00
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 26 additions and 3 deletions

View File

@ -21,11 +21,13 @@ 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'
// simple post
let options: smartreqest.ISmartRequestOptions = { // typed options
let options: smartrequest.ISmartRequestOptions = { // typed options
headers: {
"Content-Type": "application/json"
"Authorization": "Bearer token"
@ -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.4",
"description": "dropin replacement for request",
"main": "dist/index.js",
"typings": "dist/index.d.ts",