Collection of usage examples of Mock Service Worker HTTP middleware library.
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.
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.