Vim REST Console
A REST console for Vim.
vim을 cURL 클라이언트로 사용하자
.rest
file example
# GETting from resource.
http://example.com
GET /path/to/resource?key=value
# POSTing to an ElasticSearch service.
http://example.com/elasticsearch
// Specify optional headers.
Content-Type: application/json; charset=utf-8
POST /index/type?pretty
{
"key": "a key",
"value": "a value"
}
# Submitting a form.
https://example.net:8080
Accept: */*
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
Cache-Control: no-cache
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded
Cookie: userId=ac32:dfbe:8f1a:249c; sid=cfb48e3d98fcb1
User-Agent: VRC
POST /form
var1=value of var1&
var2=value of var2
이후 curl request 가 필요한 라인 (주로 Method Line)에서 Ctrl+j를 누르면 된다.
See also
- curl
- resty - 명령행
- HTTPie (httpie) - 명령행
- Vim REST Console (VRC) - vim 플러그인
- fiddler
- postman
- [추천] Hoppscotch - PWA가 지원되는 Open source API development ecosystem.