Problem Statement
What are the different types of HTTP requests in Node.js?
Explanation
Common HTTP request methods include: GET (retrieve data), POST (create or modify), PUT (update), DELETE (remove), and PATCH (partial update). Node’s `http` and Express frameworks support them all.