npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

axiosist

v1.1.0

Published

Convert node.js request handler to axios adapter

Downloads

2,790

Readme

axiosist

Node.js CI Coverage Status JavaScript Style Guide

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