bun-dev-server
Sets up high-performance development servers with Hot Module Replacement for React apps, enhancing development efficiency.
Install this skill
Security score
The bun-dev-server skill was audited on Feb 9, 2026 and we found 25 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 91 | const filePath = `public${url.pathname}`; |
Template literal with variable interpolation in command context
| 118 | console.log(`🚀 Dev server running at http://localhost:${server.port}`); |
Template literal with variable interpolation in command context
| 127 | console.log(`📝 File changed: ${event.path}`); |
Template literal with variable interpolation in command context
| 232 | console.log(`🚀 API server running at http://localhost:${server.port}`); |
Template literal with variable interpolation in command context
| 264 | console.log(`🚀 Full-stack server at http://localhost:${server.port}`); |
Template literal with variable interpolation in command context
| 421 | console.log(`🔒 HTTPS server at https://localhost:${server.port}`); |
Template literal with variable interpolation in command context
| 441 | const backendUrl = `http://localhost:8080${url.pathname}${url.search}`; |
Curl to non-GitHub URL
| 471 | curl http://localhost:3000/api/health |
Access to .env file
| 228 | port: process.env.PORT || 3000, |
Access to .env file
| 298 | Create `.env.development`: |
Access to .env file
| 312 | Create `.env.production`: |
Access to .env file
| 330 | const isDev = process.env.NODE_ENV === 'development'; |
Access to .env file
| 331 | const port = process.env.PORT || 3000; |
Access to .env file
| 398 | ├── .env.development |
Access to .env file
| 399 | ├── .env.production |
External URL reference
| 118 | console.log(`🚀 Dev server running at http://localhost:${server.port}`); |
External URL reference
| 232 | console.log(`🚀 API server running at http://localhost:${server.port}`); |
External URL reference
| 264 | console.log(`🚀 Full-stack server at http://localhost:${server.port}`); |
External URL reference
| 306 | API_URL=http://localhost:3000/api |
External URL reference
| 320 | API_URL=https://api.example.com |
External URL reference
| 421 | console.log(`🔒 HTTPS server at https://localhost:${server.port}`); |
External URL reference
| 441 | const backendUrl = `http://localhost:8080${url.pathname}${url.search}`; |
External URL reference
| 465 | open http://localhost:3000 |
External URL reference
| 471 | curl http://localhost:3000/api/health |
External URL reference
| 508 | origin: 'http://localhost:3000', |