DEV Community

Ravi Ashara
Ravi Ashara

Posted on

VSCode REST Client Extension

Extension Link "https://marketplace.visualstudio.com/items?itemName=humao.rest-client"

REST Client allows you to send HTTP request and view the response in Visual Studio Code directly.

Usage

In editor, type an HTTP request as simple as below:

GET https://jsonplaceholder.typicode.com/posts

Result

Image description

POST https://example.com/comments HTTP/1.1
content-type: application/json

{
"name": "sample",
"time": "Wed, 21 Oct 2015 18:27:50 GMT"
}

Top comments (0)