The ones you'll most commonly use are GET, POST, PATCH, PUT, and DELETE (which correspond to the Express methods app.get(), app.post(), app.patch(), app.put(), and app.delete(), respectively.
GET is used to read or retrieve resources
POST is used to create new resources
PATCH is used to update part of an existing resource
PUT is used to replace an existing resource
DELETE is used to delete resources
The request method along with the request path are used to route the request to the right request handler, which is a function that knows how to supply the requested resource.