CodePod 是一个基于 Astro + React 构建的云端文件管理编辑器平台。
v1.0.0)| 类别 | 技术 |
|---|---|
| 框架 | Astro + React 19 |
| UI 组件 | Radix UI (Dialog, ContextMenu, Tooltip 等) |
| 状态管理 | Zustand |
| 代码编辑 | CodeMirror (@uiw/react-codemirror) |
| 样式 | Tailwind CSS |
| 面板布局 | react-resizable-panels |
src/ ├── apps/ai-editor/ │ ├── content.tsx # 主内容区(预览/编辑) │ ├── sidebar.tsx # 侧边栏(文件管理) │ ├── modules/Nav.tsx # 顶部工具栏 │ ├── store/ # 状态管理 │ └── preview/ # 图片/PDF 预览组件 ├── components/ui/ # UI 组件库 └── pages/ # Astro 页面路由
pnpm dev # 开发模式
pnpm build # 构建生产版本
pnpm preview # 预览构建结果
pnpm pub # 发布到远程
MIT