Giter VIP home page Giter VIP logo

jeffphoneix / iris-noted Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kataras/iris

0.0 0.0 0.0 15.04 MB

The fastest HTTP/2 Go Web Framework. New, modern, easy to learn. Fast development with Code you control. Unbeatable cost-performance ratio :leaves: :rocket: | 谢谢 | #golang

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

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

Shell 0.01% JavaScript 3.65% Go 93.43% CSS 0.57% HTML 2.22% Dockerfile 0.09% Pug 0.05%

iris-noted'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")
}

As one Go developer once said, Iris got you covered all-round and standing strong over the years.

Some of the features Iris offers:

  • HTTP/2 (Push, even Embedded data)
  • Middleware (Accesslog, Basicauth, CORS, gRPC, Anti-Bot hCaptcha, JWT, MethodOverride, ModRevision, Monitor, PPROF, Ratelimit, Anti-Bot reCaptcha, Recovery, RequestID, Rewrite)
  • API Versioning
  • Model-View-Controller
  • Websockets
  • gRPC
  • Auto-HTTPS
  • Builtin support for ngrok to put your app on the internet, the fastest way
  • Unique Router with dynamic path as parameter with standard types like :uuid, :string, :int... and the ability to create your own
  • Compression
  • View Engines (HTML, Django, Amber, Handlebars, Pug/Jade and more)
  • Create your own File Server and host your own WebDAV server
  • Cache
  • Localization (i18n, sitemap)
  • Sessions
  • Rich Responses (HTML, Text, Markdown, XML, YAML, Binary, JSON, JSONP, Protocol Buffers, MessagePack, Content Negotiation, Streaming, Server-Sent Events and more)
  • Response Compression (gzip, deflate, brotli, snappy, s2)
  • Rich Requests (Bind URL Query, Headers, Form, Text, XML, YAML, Binary, JSON, Validation, Protocol Buffers, MessagePack and more)
  • Dependency Injection (MVC, Handlers, API Routers)
  • Testing Suite
  • And the most important... you get fast answers and support from the 1st day until now - that's six full years!

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!

@github is now sponsoring you for $550.00 one time.

A note from your new sponsor:

To celebrate Maintainer Month we want to thank you for all you do for the open source community. Check out our blog post to learn more about how GitHub is investing in maintainers. https://github.blog/2022-06-24-thank-you-to-our-maintainers/

Donations from China are now accepted!

lensesio github getsentry thepunterbot draFWM gf3 simpleittools Remydeme CetinBasoz boomhut FernandoLangOFC Hongjian0619 Ramblestsad mukunhao trading-peter AlbinoGeek basilarchia sumjoe xiaozhuai celsosz TechMaster altafino alekperos hengestone thomasfr International Juanses ansrivas ekobayong lexrus li3p madhu72 se77en vincent-li DavidShaw sascha11110 derReineke Sirisap22 primadi agoncecelia hobysmith clacroix ixalender mubariz-ahmed Cesar Didainius DmarshalTU IwateKyle Little-YangYang Major2828 MatejLach coderperu cshum dtrifonov iantuan ichenhe xvalen xytis ElNovi KKP4 Lernakow aprinslo1 pixelheresy Jude-X KevinZhouRafael KrishManohar Laotanling MihaiPopescu1985 NA Neulhan NguyenPhuoc Oka00 RainerGevers SamuelNeves TianJIANG Ubun1 XinYoungCN YukinaMochizuki stgrosshh icibiri jfloresremar jingtianfeng kilarusravankumar leandrobraga lfbos lpintes macropas marcmmx mark2b miguel-devs mihado mmckeen75 narven odas0r olaf-lexemo pitexplore pr123 lipatti marman-hp mattbowen maxgozou mizzlespot mnievesco motogo rodrigoghm sankethpb mtrense mulyawansentosa nasoma nikharsaxena ozfive paulxu21 saz59 shadowfiga siriushaha phil535 pitt134 qiepeipei skurtz97 qiuzhanghua rapita rbondi relaera remopavithran rfunix rhernandez-itemsoft risallaw robivictor rxrw srinivasganti syrm tuhao1020 wahyuief thanasolykos ukitzmann kyoukhana spazzymoto ArishSultan ehayun kukaki oshirokazuhide t6tg AnatolyUA AwsIT BlackHole1 a112121788 acdias agent3bood algoflows annieruci b2cbd baoch254 bastengao bjoroen blackHoleNgc1277 bunnycodego carlos-enginner civicwar cnzhangquan donam-givita edwindna2 ekofedriyanto fenriz07 ffelipelimao frenchmajesty gastropulgite geGao123 gnosthi goten002 guanzi008 hdezoscar93 hieungm homerious hzxd jackptoke jeremiahyan joelywz kana99 keeio khasanovrs kkdaypenny knavels kohakuhubo kostasvk lafayetteDan leki75 liheyuan lingyingtan saleebm sbenimeli sebyno seun-otosho su1gen sukiejosh svirmi unixedia vadgun vguhesan vladimir-petukhov-sr vuhoanglam yonson2 SergeShin - BelmonduS CSRaghunandan martinlindhe mdamschen netbaalzovf oliverjosefzimmer valkuere lfaynman ArturWierzbicki GeorgeFourikis L-M-Sherlock aaxx claudemuller crashCoder dochoaj edsongley evillgenius75 gog200921 mwiater statik thejones evan grassshrimp hazmi-e205 jtgoral ky2s lauweliam letmestudy mblandr midhubalan ndimorle rosales-stephanie shyyawn vcruzato wangbl11 wofka72 xsokev oleang michalsz Curtman SridarDhandapani opusmagna b4zz4r bobmcallan fangli galois-tnp geoshan juanxme nguyentamvinhlong tejzpr theantichris tuxaanand raphael-brand HieuLsw carlosmoran092 yangxianglong

📖 Learning Iris

Installation

The only requirement is the Go Programming Language.

Create a new project

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

Run

$ go mod tidy -compat=1.19
$ 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-noted's People

Contributors

kataras avatar dependabot[bot] avatar zeno-code avatar hiveminded avatar majidbigdeli avatar yale8848 avatar corebreaker avatar tuhao1020 avatar zaniadeveloper avatar jerson avatar eleven26 avatar honux avatar admpub avatar chengyumeng avatar bgaitanc avatar akiraho avatar asood123 avatar haritsfahreza avatar winggao avatar trungdlp-wolffun avatar cainiaodj avatar benlampson avatar wozz avatar tanomin avatar lrita avatar liguoqinjim avatar itcrow avatar koddr avatar alexjuca avatar mcsakoff 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.