bun-development
Facilitates modern JavaScript/TypeScript development using the Bun runtime, enhancing speed and efficiency in project setup and management.
Install this skill
Security score
The bun-development skill was audited on May 13, 2026 and we found 23 security issues across 4 threat categories, including 2 high-severity. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 310 | return new Response(`Error: ${error.message}`, { status: 500 }); |
Template literal with variable interpolation in command context
| 314 | console.log(`Server running at http://localhost:${server.port}`); |
Template literal with variable interpolation in command context
| 338 | console.log(`Received: ${message}`); |
Template literal with variable interpolation in command context
| 339 | ws.send(`Echo: ${message}`); |
Piping content to bash shell
| 33 | curl -fsSL https://bun.sh/install | bash |
Piping content to bash shell
| 591 | curl -fsSL https://bun.sh/install | bash |
Curl to non-GitHub URL
| 33 | curl -fsSL https://bun.sh/install | bash |
Curl to non-GitHub URL
| 591 | curl -fsSL https://bun.sh/install | bash |
Access to .env file
| 243 | // .env file is loaded automatically! |
Access to .env file
| 246 | const apiKey = Bun.env.API_KEY; |
Access to .env file
| 247 | const port = Bun.env.PORT ?? "3000"; |
Access to .env file
| 249 | // Or use process.env (Node.js compatible) |
Access to .env file
| 250 | const dbUrl = process.env.DATABASE_URL; |
Access to .env file
| 255 | bun --env-file=.env.production run index.ts |
Access to .env file
| 533 | "process.env.NODE_ENV": JSON.stringify("production"), |
Access to .env file
| 577 | console.log(process.env.HOME); |
External URL reference
| 33 | curl -fsSL https://bun.sh/install | bash |
External URL reference
| 152 | bun add lodash --registry https://registry.npmmirror.com |
External URL reference
| 314 | console.log(`Server running at http://localhost:${server.port}`); |
External URL reference
| 591 | curl -fsSL https://bun.sh/install | bash |
External URL reference
| 693 | - [Bun Documentation](https://bun.sh/docs) |
External URL reference
| 695 | - [Elysia Framework](https://elysiajs.com/) |
External URL reference
| 696 | - [Bun Discord](https://bun.sh/discord) |