Balanced admin monorepo: MSW mocks, minimal RBAC, full CRUD, and Playwright E2E — built with React 19, Ant Design 6, and Vite+. Ship either an English-only app (apps/basic) or a Lingui i18n variant (apps/with-lingui); see Templates below.
antd react vite TypeScript GitHub issues GitHub stars License PRs Welcome
| Category | Technology |
|---|---|
| Build Tool | Vite+ (VoidZero unified toolchain) |
| UI Framework | Ant Design 6.x |
| Routing | TanStack Router (file-based, type-safe) |
| Async State | TanStack Query v5 |
| Local State | Zustand (persisted auth & settings) |
| Validation | Zod v4 (schemas, API contracts, form validation) |
| i18n | LinguiJS in **apps/with-lingui only** (apps/basic is English-only, no Lingui) |
| Icons | lucide-react |
| API Mocking | MSW 2.x (Service Worker based) |
| E2E Testing | Playwright |
| Language | TypeScript 5.9 (strict mode) |
en) and Chinese (zh); Ant Design locales follow the active locale in apps/with-linguinpx init-antd-admin@latest · pnpm dlx init-antd-admin@latest
| Directory | Use when |
|---|---|
[apps/with-lingui](./apps/with-lingui/) |
You want LinguiJS (en + zh), .po extract/compile, and a language switcher — this is the fuller reference stack. |
[apps/basic](./apps/basic/) |
You want the same product surface with English-only UI (no Lingui, fixed en_US for Ant Design). |
Pick one app directory, install, and run Vite+ from there:
cd apps/basic && vp install && vp dev
# or
cd apps/with-lingui && vp install && vp dev
中文使用文档位于 **apps/docs**(Next.js + Nextra)。在仓库根或该目录安装依赖后:
cd apps/docs && pnpm install && pnpm dev
浏览器打开 http://localhost:3000。模板 Vite+ 应用仍为 http://localhost:5173。开发与构建命令说明见 [apps/docs/README.md](./apps/docs/README.md)。
Core Playwright flows (from the app you are working in):
cd apps/basic && pnpm run test:e2e:core
Follow these steps to set up and run the project:
npm install -g pnpm.Clone the repository:
bash
git clone https://github.com/zuiidea/antd-admin.git
cd antd-admin
Install dependencies:
bash
pnpm install
Basic App:
bash
pnpm --filter apps/basic dev
Lingui i18n App:
bash
pnpm --filter apps/with-lingui dev
Run Playwright end-to-end tests:
pnpm test:e2e
From the repository root, choose an app under apps/ (see Templates), then:
cd apps/with-lingui # or: cd apps/basic
vp install
vp dev
Open http://localhost:5173 — you'll be redirected to the login page.
Default credentials: admin / admin
vp build
vp preview
Run from the app package (example: apps/basic):
cd apps/basic
pnpm run test:e2e
pnpm run test:e2e:core
pnpm run test:e2e:ui # interactive UI mode
test:e2e:core runs the scaffold's highest-value flows only: login and users CRUD.
src/
├── api/ # Zod schemas, endpoint constants, type exports
│ ├── schemas.ts # Domain models (User, AuthTokens, MenuItem, etc.)
│ ├── auth.ts # Auth endpoint constants
│ └── user.ts # User CRUD endpoint constants
├── components/
│ ├── Aurora/ # Login background effect
│ ├── Auth/ # Auth (permission gate): index.tsx
│ ├── DataTable/ # Shared table shell, skeleton, empty state
│ ├── FilterToolbar/ # Shared filter/action toolbar
│ ├── FormModal/ # Reusable modal + form shell
│ ├── Icon/ # Shared icons and theme toggle icon
│ └── Layout/ # Admin shell (sidebar, header, main)
│ ├── MainLayout/ # Main layout shell: index.tsx
│ ├── AppFooter/ # Login footer: Powered by + GitHub → zuiidea/antd-admin
│ ├── Sidebar/ # Dynamic menu sidebar: index.tsx
│ ├── UserMenu/ # User dropdown in sidebar: index.tsx + index.css
│ └── Header/ # Top bar: index.tsx
├── hooks/
│ ├── tokenBuilders.ts # Shared Ant Design token/config builders
│ ├── useAppTheme.ts # Theme selection hook (ConfigProvider)
│ ├── usePermission.ts # Permission check hook
│ └── useResourceCRUD.ts # Shared CRUD query/mutation wiring
├── utils/
│ ├── constants.ts # API base URL, static assets
│ └── http.ts # HTTP client with JWT injection & error handling
├── locales/ # LinguiJS catalogs (.po + compiled .js)
│ ├── en/messages.po
│ └── zh/messages.po
├── mocks/
│ ├── browser.ts # MSW worker setup
│ ├── createHandler.ts # Shared MSW success/error/delay helpers
│ ├── data.ts # Mock seed data (users, menus)
│ ├── utils.ts # Mock-only helpers (filters, pagination, demo avatar URLs)
│ └── handlers/ # Request handlers (auth, user CRUD)
├── routes/ # TanStack Router file-based routes
│ ├── __root.tsx # Root layout (QueryClient, ConfigProvider, I18n)
│ ├── _auth.tsx # Auth guard layout (redirects to /login)
│ ├── _auth/dashboard/index.tsx
│ ├── _auth/users/index.tsx # Full CRUD with URL-synced search params
│ ├── _auth/403/index.tsx
│ ├── login/index.tsx
│ ├── 404/index.tsx
│ └── index.tsx # Redirects / → /login
├── stores/
│ ├── auth.ts # Auth store (tokens, user, menus, permissions)
│ ├── createPersistentStore.ts # Shared persisted-store factory
│ └── settings.ts # Settings store (darkMode, locale, sidebar)
└── main.tsx # Entry point (MSW init → React render)
tests/
└── e2e/ # Playwright E2E tests
├── helpers.ts
├── login.spec.ts
└── users.spec.ts
The project uses LinguiJS with compile-time macros. Locales: **en** (source) and **zh**.
vp run i18n:extract
vp run i18n:compile
Ant Design strings follow the active locale via ConfigProvider in __root.tsx.
VITE_API_BASE_URL in env and disable or remove MSW in main.tsx when you no longer need mocks.t macros with plain strings (larger refactor).vp.vp check --no-fmt for type/lint validation.| Route | Description |
|---|---|
/login |
Login form with validation |
/dashboard |
Statistics overview cards |
/users |
User CRUD table with search, pagination, create/edit/delete |
/403 |
Forbidden error page |
/404 |
Not found error page |
MIT
$ claude mcp add antd-admin \
-- python -m otcore.mcp_server <graph>