axios-light-my-request-adapter
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

axios Light my Request Adapter

CI Docs

This can be used to wire an Axios based client to a server during testing using Light my Request. Requires axios@^1.

Documentation

Getting Started

const axios = require("axios");
const {
  createLightMyRequestAdapter,
} = require("axios-light-my-request-adapter");

function dispatch(req, res) {
  res.writeHead(200, { "Content-Type": "application/json" });
  res.end(JSON.stringify({ data: "Hello World!" }));
}

const instance = axios.create({
  baseURL: "http://localhost/",
  adapter: createLightMyRequestAdapter(dispatch),
});

(async function () {
  const res = await instance.get("/");
  console.log(res);
})();

Or with Fastify:

const axios = require("axios");
const fastify = require("fastify");
const {
  createLightMyRequestAdapterFromFastify,
} = require("axios-light-my-request-adapter");

const app = fastify();
app.get("/", async () => {
  return { data: "Hello World!" };
});

const instance = axios.create({
  baseURL: "http://localhost/",
  adapter: createLightMyRequestAdapterFromFastify(app),
});

(async function () {
  const res = await instance.get("/");
  console.log(res);
})();

Caveats

License

MIT.

Some code was taken from axios, see NOTICE

Package Sidebar

Install

npm i axios-light-my-request-adapter

Weekly Downloads

37

Version

0.3.0

License

MIT

Unpacked Size

76.5 kB

Total Files

27

Last publish

Collaborators

  • segevfiner