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.servernpx 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
Installs
13
GitHub Stars
1.8K
First Seen
9 days ago
edgeone-makers-recipes — tencentedgeone/edgeone-pages-skills