Giter Club home page Giter Club logo

xrdavies / iris Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kataras/iris

0.0 0.0 0.0 14.48 MB

The fastest HTTP/2 Go Web Framework. A true successor of expressjs and laravel. Supports AWS Lambda, gRPC, MVC, Unique Router, Websockets, Sessions, Test suite, Dependency Injection and more. Thank you / 谢谢 https://github.com/kataras/iris/issues/1329

Home Page: https://iris-go.com

License: BSD 3-Clause "New" or "Revised" License

Shell 0.01% JavaScript 3.73% Go 93.29% CSS 0.58% HTML 2.24% Dockerfile 0.09% Pug 0.05%

iris's Introduction

Iris Web Framework

build status view examples chat donate

Iris is a fast, simple yet fully featured and very efficient web framework for Go.

It provides a beautifully expressive and easy to use foundation for your next website or API.

package main

import "github.com/kataras/iris/v12"

func main() {
	app := iris.New()
	app.Use(iris.Compression)

	app.Get("/", func(ctx iris.Context) {
		ctx.HTML("Hello <strong>%s</strong>!", "World")
	})

	app.Listen(":8080")
}
Simple Handler
package main

import "github.com/kataras/iris/v12"

type (
  request struct {
    Firstname string `json:"firstname"`
    Lastname  string `json:"lastname"`
  }

  response struct {
    ID      string `json:"id"`
    Message string `json:"message"`
  }
)

func main() {
  app := iris.New()
  app.Handle("PUT", "/users/{id:uuid}", updateUser)
  app.Listen(":8080")
}

func updateUser(ctx iris.Context) {
  id := ctx.Params().Get("id")

  var req request
  if err := ctx.ReadJSON(&req); err != nil {
    ctx.StopWithError(iris.StatusBadRequest, err)
    return
  }

  resp := response{
    ID:      id,
    Message: req.Firstname + " updated successfully",
  }
  ctx.JSON(resp)
}

Read the routing examples for more!

Handler with custom input and output arguments

https://github.com/kataras/iris/blob/master/_examples/dependency-injection/basic/main.go

Interesting? Read the examples.

Party Controller (NEW)

Head over to the full running example!

MVC
package main

import (
  "github.com/kataras/iris/v12"
  "github.com/kataras/iris/v12/mvc"
)

type (
  request struct {
    Firstname string `json:"firstname"`
    Lastname  string `json:"lastname"`
  }

  response struct {
    ID      uint64 `json:"id"`
    Message string `json:"message"`
  }
)

func main() {
  app := iris.New()
  mvc.Configure(app.Party("/users"), configureMVC)
  app.Listen(":8080")
}

func configureMVC(app *mvc.Application) {
  app.Handle(new(userController))
}

type userController struct {
  // [...dependencies]
}

func (c *userController) PutBy(id uint64, req request) response {
  return response{
    ID:      id,
    Message: req.Firstname + " updated successfully",
  }
}

Want to see more? Navigate through mvc examples!

Learn what others saying about Iris and star this open-source project to support its potentials.

Benchmarks: Jul 18, 2020 at 10:46am (UTC)

With your help, we can improve Open Source web development for everyone!

Donations from China are now accepted!

lensesio trading-peter basilarchia xiaozhuai AlbinoGeek celsosz TechMaster altafino hengestone thomasfr International Juanses ansrivas draFWM gf3 lexrus li3p se77en sumjoe vincent-li sascha11110 derReineke Sirisap22 clacroix ixalender mubariz-ahmed rodrigoghm Cesar DavidShaw DmarshalTU IwateKyle Little-YangYang coderperu cshum dtrifonov ichenhe icibiri jingtianfeng kilarusravankumar leandrobraga lfbos lpintes macropas marcmmx mihado mmckeen75 olaf-lexemo pitexplore pr123 sankethpb saz59 shadowfiga skurtz97 srinivasganti tuhao1020 wahyuief xvalen xytis ElNovi KKP4 Lernakow Major2828 MatejLach odas0r syrm ukitzmann aprinslo1 kyoukhana mark2b siriushaha spazzymoto kukaki oshirokazuhide t6tg AwsIT BlackHole1 Jude-X KevinZhouRafael Laotanling MihaiPopescu1985 Neulhan NguyenPhuoc SamuelNeves TianJIANG Ubun1 acdias agent3bood b2cbd baoch254 bastengao bunnycodego carlos-enginner civicwar cnzhangquan edwindna2 fenriz07 gnosthi goten002 guanzi008 hdezoscar93 hzxd iantuan kana99 khasanovrs knavels leki75 liheyuan lingyingtan lipatti mattbowen mizzlespot mnievesco motogo mulyawansentosa nasoma ozfive paulxu21 pitt134 qiuzhanghua rapita remopavithran rfunix rhernandez-itemsoft risallaw rxrw saleebm sbenimeli svirmi unixedia vguhesan vladimir-petukhov-sr vuhoanglam yonson2 SergeShin blackHoleNgc1277 martinlindhe mtrense netbaalzovf lfaynman ArturWierzbicki NA RainerGevers aaxx crashCoder dochoaj gog200921 nikharsaxena rbondi statik thejones vcruzato CSRaghunandan GeorgeFourikis L-M-Sherlock edsongley evan grassshrimp hazmi-e205 jtgoral ky2s lauweliam letmestudy mblandr ndimorle primadi shyyawn wangbl11 wofka72 xsokev oleang michalsz Curtman claudemuller SridarDhandapani midhubalan rosales-stephanie opusmagna b4zz4r bobmcallan fangli galois-tnp geoshan juanxme nguyentamvinhlong tejzpr theantichris tuxaanand narven raphael-brand Tang634724712 HieuLsw carlosmoran092 yangxianglong

📖 Learning Iris

Create a new project

$ mkdir myapp
$ cd myapp
$ go mod init myapp
$ go get github.com/kataras/iris/v12@master # or @v12.2.0-beta2
Install on existing project
$ cd myapp
$ go get github.com/kataras/iris/v12@master

Run

$ go mod tidy -compat=1.18
$ go run .

Iris contains extensive and thorough documentation making it easy to get started with the framework.

For a more detailed technical documentation you can head over to our godocs. And for executable code you can always visit the ./_examples repository's subdirectory.

Do you like to read while traveling?

Book cover

follow author on twitter

follow Iris web framework on twitter

follow Iris web framework on facebook

You can request a PDF and online access of the Iris E-Book (New Edition, future v12.2.0+) today and be participated in the development of Iris.

🙌 Contributing

We'd love to see your contribution to the Iris Web Framework! For more information about contributing to the Iris project please check the CONTRIBUTING.md file.

List of all Contributors

🛡 Security Vulnerabilities

If you discover a security vulnerability within Iris, please send an e-mail to [email protected]. All security vulnerabilities will be promptly addressed.

📝 License

This project is licensed under the BSD 3-clause license, just like the Go project itself.

The project name "Iris" was inspired by the Greek mythology.

iris's People

Contributors

kataras avatar zeno-code avatar hiveminded avatar majidbigdeli avatar yale8848 avatar corebreaker avatar tuhao1020 avatar zaniadeveloper avatar jerson avatar chengyumeng avatar bgaitanc avatar admpub avatar akiraho avatar honux avatar asood123 avatar haritsfahreza avatar winggao avatar benlampson avatar wozz avatar tanomin avatar lrita avatar liguoqinjim avatar itcrow avatar koddr avatar takahiko-okada avatar mattc41190 avatar xiosec avatar kimbsen avatar eryx avatar codyoss avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.