bun-cloudflare-workers
仓库创建 2025年11月8日最近提交 29 天前SkillHot 收录 22 天前
▸ 精选理由
便于将 Bun 应用部署到边缘平台,适合想在 Workers 上运行 Bun 的团队。
▸ 风险提示
部署需提供 Cloudflare 凭证并可能执行脚手架命令。
这个 Skill 做什么
用 Bun 创建、开发并部署 Cloudflare Workers 的快速指南。
用 Bun 快速搭建、开发并部署到 Cloudflare Workers 的边缘应用。适合需要把本地用 Bun 开发的服务推到 Cloudflare Workers、做边缘部署或做快速迭代时用。特点是有 bunx 脚手架和简短的 dev→deploy 流程,但要注意脚手架会下载远程代码,运行前要做安全检查。
▸ 展开 SKILL.md 英文原文
This skill should be used when the user asks about "Cloudflare Workers with Bun", "deploying Bun to Workers", "wrangler with Bun", "edge deployment", "Bun to Cloudflare", or building and deploying applications to Cloudflare Workers using Bun.
180
Stars
28
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/secondsky/claude-skills/main/plugins/bun/skills/bun-cloudflare-workers/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/secondsky/claude-skills/main/plugins/bun/skills/bun-cloudflare-workers/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Bun Cloudflare Workers Build and deploy Cloudflare Workers using Bun for development. ## Quick Start ```bash # Create new Workers project bunx create-cloudflare my-worker cd my-worker # Install dependencies bun install # Development bun run dev # Deploy bun run deploy ``` ## Secure Installation Scaffolding tools like `bunx create-cloudflare` download and execute remote code. Before running, follow supply chain security best practices: - **Block post-install scripts** — Bun disables them by default; allow specific packages via `trustedDependencies` in `package.json` - **Cooldown period** — Configure `minimumReleaseAge` in `bunfig.toml` to wait 7 days for new versions - **Audit befo
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有