aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2016-04-15 18:41:59 +0300
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2016-04-15 18:41:59 +0300
commitb6da470e12fde64fb03e58163030f475c28234cb (patch)
treeb94c096b92e2ad97715f8f904e8e3b4b9dcbe977 /README.md
parentIssue #78: Added an example for RequestCtx.SetBodyStreamWriter (diff)
downloadfasthttp-b6da470e12fde64fb03e58163030f475c28234cb.tar.gz
fasthttp-b6da470e12fde64fb03e58163030f475c28234cb.tar.bz2
fasthttp-b6da470e12fde64fb03e58163030f475c28234cb.zip
Issue #78: Mention Iris with fasthttp support in 'web frameworks and routers' chapter in the README
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index 62656de..4385d74 100644
--- a/README.md
+++ b/README.md
@@ -261,8 +261,10 @@ like in net/http. The following code is valid for fasthttp:
```
* Fasthttp doesn't provide [ServeMux](https://golang.org/pkg/net/http/#ServeMux),
-but there are more powerful third-party routers with fasthttp support exist:
+but there are more powerful third-party routers and web frameworks
+with fasthttp support exist:
+ * [Iris](https://github.com/kataras/iris)
* [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing)
* [fasthttprouter](https://github.com/buaazp/fasthttprouter)
* [echo v2](https://github.com/labstack/echo)
@@ -524,8 +526,9 @@ uintBuf := fasthttp.AppendUint(nil, 1234)
* *Are there plans to add request routing to fasthttp?*
There are no plans to add request routing into fasthttp.
- Use third-party routers with fasthttp support:
+ Use third-party routers and web frameworks with fasthttp support:
+ * [Iris](https://github.com/kataras/iris)
* [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing)
* [fasthttprouter](https://github.com/buaazp/fasthttprouter)
* [echo v2](https://github.com/labstack/echo)