fetchi

0.0.5 • Public • Published

fetchi

Note: Many Content-Types are not supported yet.

Usage

  Usage: fetchi [options] url
 
 
  Options:
 
    -V, --version                          output the version number
    -X, --method <method>                  method of this HTTP request
    -d, --data <data>                      request body payload
    -c, --content-type <mime type name>    set Content-Type header
    -H, --headers [header1, header2, ...]  set other headers
    -h, --help                             output usage information

Examples

$ fetchi http://httpbin.org/anything
200 OK
Connection: close
Server: meinheld/0.6.1
Date: Sat, 11 Nov 2017 16:04:45 GMT
Content-Type: application/json
Access-Control-Allow-Origin: *
Access-Control-Allow-Credentials: true
X-Powered-By: Flask
X-Processed-Time: 0.000786066055298
Content-Length: 413
Via: 1.1 vegur
 
{
  "args": {},
  "data""",
  "files": {},
  "form": {},
  "headers"{
    "Accept""*/*",
    "Accept-Encoding""gzip,deflate",
    "Connection""close",
    "Content-Type""null",
    "Host""httpbin.org",
    "User-Agent""node-fetch/1.0 (+https://github.com/bitinn/node-fetch)"
  },
  "json": null,
  "method""GET",
  "origin""123.123.123.123",
  "url""http://httpbin.org/anything"
}
$ fetchi http://httpbin.org/user-agent -H "user-agent: lorem"
200 OK
Connection: close
Server: meinheld/0.6.1
Date: Sat, 11 Nov 2017 16:06:18 GMT
Content-Type: application/json
Access-Control-Allow-Origin: *
Access-Control-Allow-Credentials: true
X-Powered-By: Flask
X-Processed-Time: 0.000539064407349
Content-Length: 28
Via: 1.1 vegur
 
{
  "user-agent""lorem"
}
$ fetchi http://httpbin.org/post -X post -d '{"name": "fetchi", "decription": "yet another curl like HTTP request CLI tool"}'

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.0.51latest

Version History

VersionDownloads (Last 7 Days)Published
0.0.51
0.0.40
0.0.30
0.0.20

Package Sidebar

Install

npm i fetchi

Weekly Downloads

0

Version

0.0.5

License

MIT

Last publish

Collaborators

  • haishanh