What problem does it solve? Writing lightweight HTTP endpoints in Node.js often requires heavy frameworks with routing, middleware, and boilerplate. This Skill provides expert guidance for building single-purpose asynchronous HTTP microservices with Vercel's micro library using minimal code. ## Core Features & Use Cases - Request Body Parsing: Parse JSON, text, and raw buffer request bodies with the json(), text(), and buffer() helpers. - Response & Error Handling: Send responses with send() and throw proper HTTP errors with createError() for correct status codes. - Handler Composition: Wrap handlers with higher-order functions to add middleware-like behavior such as CORS headers. - Use Case: You need a small webhook receiver that parses a JSON payload and returns a 200 response. Use this Skill to write a single async handler, run it with npx micro, and develop with hot-reloading via micro-dev. ## Quick Start Ask the AI to create a micro HTTP endpoint that parses a JSON request body and returns a JSON response.