backend-core
Installation
SKILL.md
Backend Core Skill
Instructions
-
Routing
- Create RESTful routes (GET, POST, PUT, DELETE)
- Organize routes by feature/module
- Use clear and meaningful endpoint names
-
Request & Response Handling
- Validate incoming request data
- Handle headers, params, body, and query
- Send proper HTTP status codes and JSON responses
-
Database Connection
- Connect to databases (MongoDB, PostgreSQL, MySQL)
- Use ORM/ODM when needed
- Handle connection errors safely