@aibulat/http
v0.0.4
Published
command line http client
Downloads
7
Readme
HTTP Client CLI
- very basic and simple
- can be useful to test REST APIs, which are available without authentication
- currently do not have features like inserting custom headers
- separate command for http methods: get, post, put, delete
Install
Use NodeJS 18 or later!
sudo npm i -g n
sudo n lts
node -v
npm i -g @aibulat/http
Use
get -u https://httpbin.org/get
post -u <url> -f <filename>
post -u https://httpbin.org/post -f test.txt
put -u https://httpbin.org/put -f test.txt
delete -u https://httpbin.org/delete