Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
2ef0f378d7 | |||
3a08f262d0 | |||
d1eba2e11d | |||
d07ca4e1ab |
27
README.md
27
README.md
@ -21,11 +21,13 @@ dropin replacement for request
|
|||||||
## Usage
|
## Usage
|
||||||
Use TypeScript for best in class instellisense.
|
Use TypeScript for best in class instellisense.
|
||||||
|
|
||||||
|
> note: smartrequest uses the **native** node request module under the hood (not the one from npm)
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
import * as smartrequest from 'smartrequest'
|
import * as smartrequest from 'smartrequest'
|
||||||
|
|
||||||
// simple post
|
// simple post
|
||||||
let options: smartreqest.ISmartRequestOptions = { // typed options
|
let options: smartrequest.ISmartRequestOptions = { // typed options
|
||||||
headers: {
|
headers: {
|
||||||
"Content-Type": "application/json"
|
"Content-Type": "application/json"
|
||||||
"Authorization": "Bearer token"
|
"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
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "smartrequest",
|
"name": "smartrequest",
|
||||||
"version": "1.0.2",
|
"version": "1.0.4",
|
||||||
"description": "dropin replacement for request",
|
"description": "dropin replacement for request",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
|
Reference in New Issue
Block a user