You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removes the MSW vs llmock comparison section and table from the
README/npm landing page. This content lives on the [docs site
competitive matrix](https://llmock.copilotkit.dev/) instead.
[MSW (Mock Service Worker)](https://mswjs.io/) is a popular API mocking library, but it solves a different problem.
29
-
30
-
**The key difference is architecture.** llmock runs a real HTTP server on a port. MSW patches `http`/`https`/`fetch` modules inside a single Node.js process. MSW can only intercept requests from the process that calls `server.listen()` — child processes, separate services, and workers are unaffected.
31
-
32
-
This matters for E2E tests where multiple processes make LLM API calls:
0 commit comments