Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

axiosist

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

axiosist

Convert node.js request handler to axios adapter

  • 0.7.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1K
increased by1.82%
Maintainers
1
Weekly downloads
 
Created
Source

axiosist

Build Status Coverage Status dependencies Status devDependencies Status JavaScript Style Guide Greenkeeper badge

Axios based supertest: convert node.js request handler to axios adapter, used for node.js server unit test.

Install

npm install --save-dev axiosist

Usage

// App
const express = require('express')
const app = express()

app.get('/', (req, res) => res.status(201).send('foo'))

// Unit test in async function
const assert = require('assert')
const axiosist = require('axiosist')

void (async () => {
    const response = await axiosist(app).get('/')
    assert.strictEqual(201, response.statusCode)
    assert.strictEqual('foo', response.data)
}) ()

API

axiosist(callback)

Create an axios instance with adapter of the request callback, and treat all HTTP statuses as fulfilled.

axiosist.createAdapter(callback)

Create the adapter of the request callback, used for your own axios instance.

axiosist(callback)

is equal to

axios.create({ adapter: axiosist.createAdapter(callback) })

Why another supertest

Supertest(Superagent) is build on callbacks.

supertest(app).get('/').end((err, res) => console.log(res.data))

Although compatible with stream mode & promise mode.

// Stream mode
fs.createReadStream('foo.txt')
.pipe(supertest(app).post('/'))
.on('response', res => console.log('Successful.'))

// Promise mode
supertest(app).delete('/').then(
    res => console.log('Successful.'),
    err => console.log('Failed.')
)

We can use one mode of them, but not multi modes together.

fs.createReadStream('foo.txt')
.pipe(supertest(app).post('/')).then(
    res => console.log('Successful.'),
    err => console.log('Failed.')
) // Boom: two requests sent.

Axios is build on promises, and easy to use with callbacks & streams together.

axiosist(app).post('/', fs.createReadStream('foo.txt')).then(
    res => console.log('Successful.'),
    err => console.log('Failed.')
) // Works

It may be more suitable for some specific test cases.

Misc

Axiosist will keep the host header of the request, for example

const express = require('express')
const app = require('app')

app.get('/host', (req, res) => res.send(req.get('host')))


const assert = require('assert')
const axiosist = require('axiosist')

void (async () => {
    const response = await axiosist(app).get('/host')
    assert.strictEqual('127.0.0.1:5xxxxx', response.data)
}) ()

void (async () => {
    const response = await axiosist(app).get('http://www.example.com:3912/host')
    assert.strictEqual('www.example.com:3912', response.data)
}) ()

License

MIT

Keywords

FAQs

Package last updated on 20 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc