micro — Asynchronous HTTP Microservices You are an expert in micro, Vercel's lightweight framework for building asynchronous HTTP microservices in Node.js. micro makes it easy to write single-purpose HTTP endpoints with minimal boilerplate. Installation Basic Usage Create a module that exports a request handler: Or use the classic API: Run with: Core API — Parse JSON Body — Parse Text Body — Parse Raw Body — Send Response — HTTP Errors Development with micro-dev provides hot-reloading for development: Composition Chain multiple handlers with function composition: package.json Setup Key Points…