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

@mswjs/http-middleware

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mswjs/http-middleware

Spawn an [Express](https://expressjs.com) server from your [Mock Service Worker](https://github.com/mswjs/msw) request handlers or apply them to an existing server using a middleware.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26K
decreased by-5.45%
Maintainers
1
Weekly downloads
 
Created
Source

@mswjs/http-middleware

Spawn an Express server from your Mock Service Worker request handlers or apply them to an existing server using a middleware.

When to use this?

You should always prefer Mock Service Worker for API mocking because it can meet most of your requirements without having to spawn and maintain an actual HTTP server. Please refer to the Getting started tutorial to integrate next-generation API mocking into your application.

There are, however, use cases when this extension can be applicable:

  • If you wish to curl your mock definitions locally;
  • When prototyping a Node.js backend implementation;
  • When integrating API mocking in a complex application architecture (i.e. for dockerized applications).

Getting started

Install

$ npm install @mswjs/http-middleware
# or
$ yarn add @mswjs/http-middleware

Declare request handlers

// src/mocks/handlers.js
import { rest, graphql } from 'msw'

export const handlers = [
  rest.post('/user', (req, res, ctx) => {
    return res(ctx.json({ firstName: 'John' }))
  }),
  graphql.query('GetUser', (req, res, ctx) => {
    return res(
      ctx.data({
        user: {
          firstName: 'John',
        },
      }),
    )
  }),
]

Learn more about writing request handlers.

Integrate

A. Spawn a standalone server
import { createServer } from '@mswjs/http-middleware'
import { handlers } from './handlers'

const httpServer = createServer(...handlers)

httpServer.listen(9090)
B. Apply as a middleware
import { createMiddleware } from '@mswjs/http-middleware'
import app from './app'
import { handlers } from './handlers'

app.use(createMiddleware(...handlers))

API

createServer(...handlers: RequestHandler[])

Establishes a standalone Express server that uses the given request handlers to process all incoming requests.

import { rest } from 'msw'
import { createServer } from '@mswjs/http-middleware'

const httpServer = createServer(
  rest.get('/user', (req, res, ctx) => {
    return res(ctx.json({ firstName: 'John' }))
  }),
)

httpServer.listen(9090)

Making a GET http://localhost:9090/user request returns the following response:

200 OK
Content-Type: application/json

{
  "firstName": "John"
}

createMiddleware(...handlers: RequestHandler[])

Creates an Express middleware function that uses the given request handlers to process all incoming requests.

import { rest } from 'msw'
import { createMiddleware } from '@mswjs/http-middleware'

const app = express()

app.use(
  createMiddleware(
    rest.get('/user', (req, res, ctx) => {
      return res(ctx.json({ firstName: 'John' }))
    }),
  ),
)

app.use(9090)

Mentions

FAQs

Package last updated on 23 Jul 2021

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