Skip to content
ponylang HTTP library 🐴 🕸
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.circleci fix circleci config (#16) Feb 15, 2019
examples fix compilation of examples Jun 19, 2018
http remove default port in Host: attribute (#18) Mar 13, 2019
.gitignore Add api docs in HTML form Jun 16, 2018
CODE_OF_CONDUCT.md initial commit, moved the net/http package from ponyc Jun 11, 2018
CONTRIBUTING.md initial commit, moved the net/http package from ponyc Jun 11, 2018
LICENSE initial commit, moved the net/http package from ponyc Jun 11, 2018
Makefile
README.md README: it's been removed from stdlib in 0.24.0 (#12) Dec 11, 2018
STYLE_GUIDE.md initial commit, moved the net/http package from ponyc Jun 11, 2018
VERSION Prep for 0.2.0 release Feb 15, 2019
release.bash add release script Jun 19, 2018

README.md

http

Ponylang package to build client and server applications for the HTTP protocol.

CircleCI

Status

This is the Pony HTTP/1 library from the standard library, formerly known as net/http. It contains both an HTTP client to issue HTTP requests against HTTP servers, and an HTTP server. It also contains a library for handling and parsing URLs.

It was removed from the stdlib with 0.24.0 as a result of RFC 55. See also the announcement blog post. The Pony Team decided to remove it from the stdlib as is did not meet their quality standards. Given the familiarity of most people with HTTP and thus the attention this library gets, it was considered wiser to remove it from the stdlib and give it a new home as a separate package, where it will not be subject to RFCs in order to rework its innarts.

Help us improve

It is considered established knowledge that this library needs a complete rework. If you would like to contribute turning this http library into the shape it should be in for representing the power of Ponylang, drop us a note on any of the issues marked as Help Wanted.

Installation

  • Add http to your build dependencies using pony-stable:
stable add github ponylang/http
  • Execute stable fetch to fetch your dependencies.
  • Include this package by adding use "http" to your Pony sources.
  • Execute stable env ponyc to compile your application
You can’t perform that action at this time.