diff options
author | Loïc Hoguin <[email protected]> | 2025-04-11 14:34:51 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-04-11 14:34:51 +0200 |
commit | eb808a3f8bbd97d2a2ea0114b43b708a17b44066 (patch) | |
tree | fc142e5b11792af4f84d8634d9a8809f32344634 /docs/en/gun/2.2/guide/introduction.asciidoc | |
parent | 25e93c91878b7f8536764b06d2cb72020031acd1 (diff) | |
download | ninenines.eu-master.tar.gz ninenines.eu-master.tar.bz2 ninenines.eu-master.zip |
Diffstat (limited to 'docs/en/gun/2.2/guide/introduction.asciidoc')
-rw-r--r-- | docs/en/gun/2.2/guide/introduction.asciidoc | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/en/gun/2.2/guide/introduction.asciidoc b/docs/en/gun/2.2/guide/introduction.asciidoc new file mode 100644 index 00000000..d96419d9 --- /dev/null +++ b/docs/en/gun/2.2/guide/introduction.asciidoc @@ -0,0 +1,49 @@ +[[introduction]] +== Introduction + +Gun is an HTTP client for Erlang/OTP. + +Gun supports the HTTP/2, HTTP/1.1 and Websocket protocols. + +=== Prerequisites + +Knowledge of Erlang, but also of the HTTP/1.1, HTTP/2 and Websocket +protocols is required in order to read this guide. + +=== Supported platforms + +Gun is tested and supported on Linux, FreeBSD, Windows and OSX. + +Gun is developed for Erlang/OTP 22.0 and newer. + +=== License + +Gun uses the ISC License. + +---- +Copyright (c) 2013-2025, Loïc Hoguin <[email protected]> + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +---- + +=== Versioning + +Gun uses http://semver.org/[Semantic Versioning 2.0.0]. + +=== Conventions + +In the HTTP protocol, the method name is case sensitive. All standard +method names are uppercase. + +Header names are case insensitive. Gun converts all the header names +to lowercase, including request headers provided by your application. |