Giter Site home page Giter Site logo

curlcat's Introduction

curlcat

netcat for HTTP/1.1, based on libcurl.

options

-h, --help              print help message
-X, --request <method>  HTTP method
-H, --header <header>   HTTP header
-k, --insecure          don't verify SSL certificate
-v, --verbose           write headers to stderr
-u, --unbuffered        disable stdout/stderr buffering
--json                  shorthand for -H "Content-Type: application/json"

Option -X, -H and -z are the same as curl. Other than that, lots of curl's options are not implemented.

Unlike curl, but similarly to netcat, curlcat always reads request body from stdin when PATCH/POST/PUT method is specified with -X.

Also, curlcat supports full-duplex streaming correctly. You can test it with HTTP echo server such as:
https://github.com/nu774/httpechoserver-go

It's unfortunate that curl (used by everybody) doesn't seem to support full-duplex HTTP streaming properly. By curl, you can communicate with a HTTP echo server like this:

$ curl -sNT- http://server:port/path

You enter a line, curl sends them to the server, then the server immediately echo backs. However, you will see that curl doesn't print server's resposene until you enter a next line.

For this to work correctly, we need two pipelines (stdin to server, and server to stdout) to work concurrently. In other words, we need either two threads or some kind of I/O multiplex mechanism.

Thanks to libcurl's multi interface, we can easily multiplex stdin and libcurl's easy handles, and this is how curlcat is implemented.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.