Visual Management
Manage MSW handlers intuitively with GUI panel. Quickly find APIs with search and filtering capabilities.
Manage your API mocks with an intuitive GUI panel.
Mocking GUI is a GUI library based on MSW (Mock Service Worker). It provides an intuitive interface to easily mock and test APIs during development.
Start by installing the package in your project.
pnpm add @kakaocloud/mocking-guiInitialize MSW configuration:
npx msw init <PUBLIC_DIR> [options]Wrap your application with MockingGUIBoundary:
import { MockingGUIBoundary } from '@kakaocloud/mocking-gui/browser';
function App() {
return (
<MockingGUIBoundary>
<YourAppContent />
</MockingGUIBoundary>
);
}Check out our examples to get started quickly.