1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-05 11:17:03 +00:00
Part 3.


Former-commit-id: 229b86baca4043c69517968318d9a962d2e026d0
This commit is contained in:
Gerasimos (Makis) Maropoulos
2017-03-24 02:25:00 +02:00
parent 7c5d7cae05
commit 7a6cf4c5aa
18 changed files with 558 additions and 24 deletions

View File

@@ -23,6 +23,10 @@ Developers should read the official [documentation](https://godoc.org/gopkg.in/k
* [Favicon](beginner/favicon/main.go)
* [File Server](beginner/file-server/main.go)
* [Send Files](beginner/send-files/main.go)
* [Stream Writer](beginner/stream-writer/main.go)
* [Listen UNIX Socket](beginner/listen-unix/main.go)
* [Listen TLS](beginner/listen-tls/main.go)
* [Listen Letsencrypt (Automatic Certifications)](beginner/listen-letsencrypt/main.go)
* [Level: Intermediate](intermediate)
* [Send An E-mail](intermediate/e-mail/main.go)
* [Upload/Read Files](intermediate/upload-files/main.go)
@@ -34,6 +38,8 @@ Developers should read the official [documentation](https://godoc.org/gopkg.in/k
* [Localization and Internationalization](intermediate/i18n/main.go)
* [Recovery](intermediate/recover/main.go)
* [Graceful Shutdown](intermediate/graceful-shutdown/main.go)
* [Custom TCP Listener](intermediate/custom-listener/main.go)
* [Custom HTTP Server](intermediate/custom-httpserver/main.go)
* [View Engine](intermediate/view)
* [Overview](intermediate/view/overview/main.go)
* [Embedding Templates Into Executable](intermediate/embedding-templates-into-app)
@@ -58,10 +64,15 @@ Developers should read the official [documentation](https://godoc.org/gopkg.in/k
* [Secure](intermediate/websockets/secure/main.go)
* [Custom Go Client](intermediate/websockets/custom-go-client/main.go)
* [Level: Advanced](advanced)
* [Transactions](advanced/transactions/main.go)
* [HTTP Testing](advanced/httptest/main_test.go)
* [Watch & Compile Typescript source files](advanced/typescript/main.go)
* [Cloud Editor](advanced/cloud-editor/main.go)
* [Online Visitors](advanced/online-visitors/main.go)
* [URL Shortener using BoltDB](advanced/url-shortener/main.go)
* [Subdomains](advanced/subdomains)
* [Single](advanced/subdomains/single/main.go)
* [Multi](advanced/subdomains/multi/main.go)
* [Wildcard](advanced/subdomains/wildcard/main.go)
> Take look at the [community examples](https://github.com/iris-contrib/examples) too!