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

mocks-server-lite

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mocks-server-lite

Mocking server supporting multiple route variants and mocks

  • 0.10.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Mocks Server Lite

Credit: This is heavily inspired by mocks-server and takes some of the main concepts from it. It is massively simplified though, currently with only the core functionality as well as being TypeScript first. I created this because the mocks-server project doesnt currently seem to be very active and doesnt come with types and a few other features I think is key, which are listed below.

Introduction

Node.js mock server that can run live, interactive mocks in place of real APIs. It allows you to define many different responses for a same route, so you can change the whole mocked API behavior by simply changing the response of one or many routes while the server is running. This really helps with local FrontEnd development when the BackEnd isnt ready/available and also really good for automated test runs where you want to change how the backing server behaves whilst it is still running.

Installation/Getting Started

Main Features

  • define multiple static or dynamic mock responses (variants) for api endpoints (routes)
  • group together route mock responses in collections
  • change route responses without having to restart the mocks server
  • support route middleware
  • add response delays with route override
  • call logs so you can return something different on subsequent calls
  • web sockets support
  • static paths support

Learn more...

FAQ

No advantages per se but different in the fact youre actually calling a mocked server served at a URL rather than the request being intercepted at any level in code. Also different in that I don't see this as a mocking tool to use with jest or vitest, more to use with local development (if a BackEnd isnt ready/available) or supporting an E2E test run (using tools like cypress or playwright) where you dont want it hit a real BackEnd.

Example Repo

https://github.com/burt202/mocks-server-lite-example

  • all mocking code is in mocks/, with the mock server being created in mocks/server.ts
  • also see how the playwright test run can change the behaviour of the mocks server by caling setMockCollection which in turn calls POST /__set-collection with a new collection name

Keywords

FAQs

Package last updated on 07 Nov 2024

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