fastify
Installation
SKILL.md
When to use this skill
Use this skill whenever the user wants to:
- Build high-performance Node.js HTTP services with Fastify
- Use JSON Schema for request/response validation and serialization
- Create and compose Fastify plugins with encapsulation
- Configure logging, TypeScript, and production deployments
How to use this skill
Workflow
- Create server — instantiate Fastify with options (logging, etc.)
- Register plugins — add functionality via the plugin system
- Define routes with schemas — validate requests and serialize responses
- Test and deploy — use
fastify.inject()for testing, deploy with process manager