From 10f440b9db42ba1adcbac04ef55d6986bc53bf07 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Mon, 1 Jan 2018 22:14:52 +0200 Subject: [PATCH] add a new article about Iris and Vue.js Former-commit-id: c7406cbd961d44016628c55083f554bba1f5745e --- CONTRIBUTING.md | 1 + README.md | 1 + README_ZH.md | 1 + _examples/README.md | 4 ++-- _examples/mvc/middleware/main.go | 2 +- 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dbcda5e0..2a85cf95 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -47,6 +47,7 @@ Instructions can be found at: https://github.com/kataras/iris/issues/796 Write an article about Iris in https://medium.com , https://dev.to or if you're being a hackathon at https://hackernoon.com, some examples: +* [A Todo MVC Application using Iris and Vue.js](https://dev.to/kataras/a-todo-mvc-application-using-iris-and-vuejs-1hn9) * [A Hasura starter project with a ready to deploy Golang hello-world web app with IRIS](bit.ly/2lmKaAZ) * [Top 6 web frameworks for Go as of 2017](https://blog.usejournal.com/top-6-web-frameworks-for-go-as-of-2017-23270e059c4b) * [Iris Go Framework + MongoDB](https://medium.com/go-language/iris-go-framework-mongodb-552e349eab9c) diff --git a/README.md b/README.md index 95c170ae..de8ab77f 100644 --- a/README.md +++ b/README.md @@ -199,6 +199,7 @@ Iris, unlike others, is 100% compatible with the standards and that's why the ma ### Articles +* [A Todo MVC Application using Iris and Vue.js](https://dev.to/kataras/a-todo-mvc-application-using-iris-and-vuejs-1hn9) * [A Hasura starter project with a ready to deploy Golang hello-world web app with IRIS](bit.ly/2lmKaAZ) * [Top 6 web frameworks for Go as of 2017](https://blog.usejournal.com/top-6-web-frameworks-for-go-as-of-2017-23270e059c4b) * [Iris Go Framework + MongoDB](https://medium.com/go-language/iris-go-framework-mongodb-552e349eab9c) diff --git a/README_ZH.md b/README_ZH.md index 91a5d87c..3db8d41d 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -192,6 +192,7 @@ Iris拥有大量的处理程序[[1]](middleware/)[[2]](https://github.com/iris-c ### 用品 +* [A Todo MVC Application using Iris and Vue.js](https://dev.to/kataras/a-todo-mvc-application-using-iris-and-vuejs-1hn9) * [A Hasura starter project with a ready to deploy Golang hello-world web app with IRIS](bit.ly/2lmKaAZ) * [Top 6 web frameworks for Go as of 2017](https://blog.usejournal.com/top-6-web-frameworks-for-go-as-of-2017-23270e059c4b) * [Iris Go Framework + MongoDB](https://medium.com/go-language/iris-go-framework-mongodb-552e349eab9c) diff --git a/_examples/README.md b/_examples/README.md index 55c7ad8b..b0c4a2c0 100644 --- a/_examples/README.md +++ b/_examples/README.md @@ -11,7 +11,7 @@ It doesn't always contain the "best ways" but it does cover each important featu - [Hello world!](hello-world/main.go) - [Glimpse](overview/main.go) - [Tutorial: Online Visitors](tutorial/online-visitors/main.go) -- [Tutorial: Vue.js Todo MVC](tutorial/vuejs-todo-mvc) +- [Tutorial: A Todo MVC Application using Iris and Vue.js](https://dev.to/kataras/a-todo-mvc-application-using-iris-and-vuejs-1hn9) - [Tutorial: URL Shortener using BoltDB](https://medium.com/@kataras/a-url-shortener-service-using-go-iris-and-bolt-4182f0b00ae7) - [Tutorial: How to turn your Android Device into a fully featured Web Server (**MUST**)](https://twitter.com/ThePracticalDev/status/892022594031017988) - [POC: Convert the medium-sized project "Parrot" from native to Iris](https://github.com/iris-contrib/parrot) @@ -259,7 +259,7 @@ Follow the examples below, - [Login showcase - Plus Repository and Service layers](mvc/login) **UPDATED** - [Singleton](mvc/singleton) **NEW** - [Websocket Controller](mvc/websocket) **NEW** -- [Register Middleware](middleware) **NEW** +- [Register Middleware](mvc/middleware) **NEW** - [Vue.js Todo MVC](tutorial/vuejs-todo-mvc) **NEW** ### Subdomains diff --git a/_examples/mvc/middleware/main.go b/_examples/mvc/middleware/main.go index 43b36c38..bc081531 100644 --- a/_examples/mvc/middleware/main.go +++ b/_examples/mvc/middleware/main.go @@ -19,7 +19,7 @@ func main() { // http://localhost:8080 // http://localhost:8080/other // - // refresh every 10 second and you'll see different time output. + // refresh every 10 seconds and you'll see different time output. app.Run(iris.Addr(":8080")) }