Concept Flow - GET, POST, PUT, DELETE handlers
Client sends HTTP request
Server receives request
Check HTTP method
Fetch
Send response back to client
The server listens for HTTP requests, checks the method (GET, POST, PUT, DELETE), then runs the matching handler to fetch, create, update, or delete data, and finally sends a response.