Appendix: Test your Deno API
Here we’ll analyze two tools to test the Deno REST APIs we created before.
Postman
Postman is an API platform for building and testing APIs.
IIt’s available for free, and we can find the download link in the Appendix: Further Resources lesson. After we install Postman on our machine, we can start using the tool directly. As we can see below, the interface is pretty straightforward to use.
We can define which type of request we want to create (GET, PUT, POST, DELETE), provide a target URL, and then use the different tabs to enter specific information, like a custom header or the ...