Claude-skill-registry js-bun-majo
Use Bun instead of Node.js and npm for JavaScript and TypeScript development.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/js-bun-majo" ~/.claude/skills/majiayu000-claude-skill-registry-js-bun-majo && rm -rf "$T"
manifest:
skills/data/js-bun-majo/SKILL.mdsource content
JavaScript/TypeScript with Bun
Goal: Ensure Bun is used as the runtime, tooling, and package manager for all JavaScript and TypeScript development, completely replacing Node.js and npm.
When to Use This Skill
- Initializing a new JS/TS project
- Migrating from Node.js/npm to Bun
- Running JavaScript or TypeScript code
- Installing packages or dependencies
- Building or bundling JS/TS projects
- Writing scripts in package.json equivalents
When NOT to Use This Skill
- Project explicitly requires Node.js runtime (e.g., specific Node APIs)
- Legacy project with npm-specific configurations that can't migrate
- Working with Deno instead of Bun
Process
- Check for existing Node/npm usage - Look for
,package-lock.json
, npm scriptsnode_modules - Install Bun if not present - Use system package manager or
curl -fsSL https://bun.sh/install | bash - Initialize with Bun - Use
instead ofbun initnpm init - Install dependencies - Use
instead ofbun installnpm install - Run scripts - Use
instead ofbun run <script>npm run - Execute files - Use
instead ofbun <file>node <file> - Add dependencies - Use
instead ofbun add <pkg>npm install <pkg> - Update AGENTS.md - Document Bun usage for the project
Constraints
- ALWAYS prefer Bun over Node.js and npm in all circumstances
- NEVER use npm commands (
,npm install
,npm run
) when Bun alternatives existnpx - NEVER create
- Bun usespackage-lock.json
insteadbun.lockb - Check
exists before assuming Bun is initializedpackage.json - If uncertain on Bun commands, use
or command line for assistancebun --help
Use Bun as the runtime, tooling, and package manager in lieu of Node and npm.
This applies to both JavaScript and TypeScript projects.
If uncertain on how to invoke Bun commands, use the command line for help.
Testing Skills
- Verify Bun is installed:
bun --version - Test script execution:
bun run <script-name> - Check lockfile:
should exist, notbun.lockbpackage-lock.json - Ensure no npm commands in documentation or scripts
Integration
This skill extends
dev-standards-majo. Always ensure dev-standards-majo is loaded for:
- AGENTS.md maintenance
- Universal code principles
- Documentation policies
Works alongside:
— For committing JavaScript/TypeScript changesgit-majo
— For writing JavaScript/TypeScript documentationwriting-docs-majo