View RSS feed

VS Code REST Client

Published: Oct 15, 2024Source

To easily test endpoints without needing Postman...

  1. Install the REST Client VS Code extension.

  2. Create a file to hold the endpoints (e.g. /requests/endpoints.rest).

  3. Add test endpoints separated by ###.

GET http://localhost:3001/api/notes

###

GET http://localhost:3001/api/notes/1

###

POST http://localhost:3001/api/notes HTTP/1.1
content-type: application/json

{
"content": "Hello world!",
"important": true
}
  1. Click on the send request link above any of the endpoints to test.