axios-serve

1.1.2 • Public • Published

axios-serve

Run Axios with net.Server under the hood. Good for isolated tests.

Usage

const Axios = require('axios-serve')

const app = require('./app.js') // Express app

const request = Axios.createServer(app)

request.get('/')
  .then(res => {
    console.log(res.status === 200)
  })

Axios defaults and interceptors properties are available.

Installation

Install using npm

npm install axios-serve

License

MIT

Package Sidebar

Install

npm i axios-serve

Weekly Downloads

1

Version

1.1.2

License

MIT

Last publish

Collaborators

  • cheoshn