A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.
Go to file
2018-07-19 23:13:16 +02:00
test fix(core): export formData 2018-07-19 22:36:45 +02:00
ts fix(path resolution): now correctly looking in cwd 2018-07-19 23:13:16 +02:00
.gitignore initial 2017-01-29 00:52:58 +01:00
.gitlab-ci.yml fix(ci): now creating TSDoc 2018-07-15 23:45:03 +02:00
npmextra.json fix(build): coverage treshold 2018-07-19 22:51:22 +02:00
package-lock.json 1.1.4 2018-07-19 22:51:22 +02:00
package.json 1.1.4 2018-07-19 22:51:22 +02:00
README.md fix(core): update to latest standards 2018-06-13 22:34:49 +02:00
tslint.json improve README 2017-01-29 01:21:48 +01:00

smartrequest

dropin replacement for request

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

note: smartrequest uses the native node request module under the hood (not the one from npm)

import * as smartrequest from 'smartrequest'

// simple post
let options: smartrequest.ISmartRequestOptions = { // typed options
    headers: {
        "Content-Type": "application/json"
        "Authorization": "Bearer token"
    },
    requestBody: {
        key1: 'value1',
        key2: 3
    }
}

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
    })
})

npm