bun-nuxt
仓库创建 2025年11月8日最近提交 29 天前SkillHot 收录 22 天前
▸ 精选理由
适合想在 Bun 上运行 Vue/Nuxt 应用以提升速度的开发者。
这个 Skill 做什么
介绍在 Bun 上运行 Nuxt 3 项目并进行开发与构建的流程。
在 Bun 上运行 Nuxt 3 项目进行开发和构建,用 Bun 能显著加快本地启动和打包速度。适合想用 Bun 作为 runtime、把 Nuxt 项目迁移到 Bun,或在开发/生产环境用 Bun 的场景,涵盖依赖安装、dev、build、preview 等常见流程。特别要注意脚手架执行远程代码时的安全性,但总体能带来更快的开发体验。
▸ 展开 SKILL.md 英文原文
Use when running Nuxt 3 with Bun runtime, building Vue/Nuxt apps with Bun, or configuring Nuxt projects to use Bun for development and production.
180
Stars
28
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/secondsky/claude-skills/main/plugins/bun/skills/bun-nuxt/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/secondsky/claude-skills/main/plugins/bun/skills/bun-nuxt/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Bun Nuxt Run Nuxt 3 applications with Bun for faster development. ## Quick Start ```bash # Create new Nuxt project bunx nuxi@latest init my-app cd my-app # Install dependencies bun install # Development bun run dev # Build bun run build # Preview production bun run preview ``` ## Secure Installation Scaffolding tools like `bunx nuxi init` 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 before
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有