aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2016-05-12 11:23:01 +0300
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2016-05-12 11:23:01 +0300
commitecba84a7fe001c29e69a8c7550b40f1c684e0113 (patch)
tree4c5ef9f5409981cd862368770ea9c079725300d6 /README.md
parentIssue #95: added an installation section to README.md (diff)
downloadfasthttp-ecba84a7fe001c29e69a8c7550b40f1c684e0113.tar.gz
fasthttp-ecba84a7fe001c29e69a8c7550b40f1c684e0113.tar.bz2
fasthttp-ecba84a7fe001c29e69a8c7550b40f1c684e0113.zip
Issue #95: Added 'Related projects' chapter into README
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9f00ccf..ca2f9d1 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,8 @@ connections per physical server.
[Tricks with byte buffers](#tricks-with-byte-buffers)
+[Related projects](#related-projects)
+
[FAQ](#faq)
# HTTP server performance comparison with [net/http](https://golang.org/pkg/net/http/)
@@ -475,6 +477,22 @@ statusCode, body, err := fasthttp.Get(nil, "http://google.com/")
uintBuf := fasthttp.AppendUint(nil, 1234)
```
+# Related projects
+
+ * [fasthttp-contrib](https://github.com/fasthttp-contrib) - various useful
+ helpers for projects based on fasthttp.
+ * [iris](https://github.com/kataras/iris) - web application framework built
+ on top of fasthttp. Features speed and functionality.
+ * [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing) - fast and
+ powerful routing package for fasthttp servers.
+ * [fasthttprouter](https://github.com/buaazp/fasthttprouter) - a high
+ performance fasthttp request router that scales well.
+ * [echo](https://github.com/labstack/echo) - fast and unfancy HTTP server
+ framework with fasthttp support.
+ * [websocket](https://github.com/leavengood/websocket) - Gorilla-based
+ websocket implementation for fasthttp.
+
+
# FAQ
* *Why creating yet another http package instead of optimizing net/http?*