Here's an example of how you can create a simple HTTP server with a DELETE route using TypeScript:
index.ts384 chars16 lines
Explanation:
http
module, which we'll use to create the server.createServer()
method of the http
module. This method takes a callback function that will be executed on every request the server receives.DELETE
. If it is, we return a 200 status code with the message Deleted!
. Otherwise, we return a 404 status code with the message Route not found
.listen()
method, and we log a message when the server starts.Note:
DELETE
requests - make sure to implement proper authentication and validation to prevent accidental or malicious data loss.gistlibby LogSnag