Mock Service Worker browser and node integration for Vite.
npm install --save-dev @iodigital/vite-plugin-msw
# yarn add --dev @iodigital/vite-plugin-msw
# pnpm add --save-dev @iodigital/vite-plugin-msw
https://mswjs.io/docs/getting-started/mocks
// Import plugin
import msw from "@iodigital/vite-plugin-msw";
// Import msw handlers
import { handlers } from "../mocks/handlers";
// Pass them to plugin
export default defineConfig({
plugins: [msw({ handlers })],
});
interface VitePluginMswOptions {
handlers: RequestHandler[];
mode?: "browser" | "node";
build?: boolean;
}
- Required
MSW handlers. More information on how to define these: https://mswjs.io/docs/getting-started/mocks
- Optional
- Default:
browser
To start MSW in the client, please follow the Configure worker step and Start worker step in the MSW docs. The mockServiceWorker.js
file will be provided by the Vite Dev Server.
This will handle the mocked service worker handlers via a Vite Dev Server plugin.
- Optional
- Default:
false
A true value will output MSW's mockServiceWorker.js
file to the Vite build directory, in case if MSW is needed in production.
npm run dev
npm run build
cd examples/with-vite
npm run dev
curl http://localhost:3000/api/health
npm run build