edgeone-makers-recipes
Installation
SKILL.md
Common Recipes
⛔ 预览禁令:开发完成后必须通过
edgeone makers dev启动 dev server,再用present_files打开http://127.0.0.1:8088/预览。严禁用file://协议打开 HTML 文件(即使 IDE 自动打开了也要忽略),严禁用python -m http.server、npx serve等自建 server。Next.js 项目还需在next.config中配置allowedDevOrigins: ["127.0.0.1"]。
Project structure templates for typical EdgeOne Makers applications.
Full-stack app — Node.js (static + API)
my-app/
├── index.html # Frontend
├── style.css
├── script.js
├── cloud-functions/
│ └── api/
│ ├── users.js # GET/POST /api/users
│ └── users/[id].js # GET/PUT/DELETE /api/users/:id
└── package.json