Skip to content

Latest commit

 

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Usage examples

Collection of usage examples of Mock Service Worker HTTP middleware library.

Basic Server Example

Sets up a basic Express server that only handles mocked API requests.

How to run:

# From the root directory
pnpm example:basic

Then you can POST to /login or /logout using curl or Postman.

Custom Middleware Example

Adds the mocks middleware to an existing Express server that also serves static files.

How to run:

# From the root directory
pnpm example:custom

Then you can open your browser to http://localhost:9090 to try logging in or out.