Coder Social home page Coder Social logo

ghosthamlet / iris Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kataras/iris

0.0 3.0 0.0 2.75 MB

The fastest web framework for Go in (THIS) Earth. HTTP/2 support, standby for Go v1.8.

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

License: MIT License

Go 100.00%

iris's Introduction

Logo created by an Iris community member, @OneebMalik

Build Status

http://goreportcard.com/report/kataras/iris

Built with GoLang

Cross framework

Donation


CHANGELOG/HISTORY

Examples

Practical Guide/Docs

Chat

Iris is the fastest HTTP/2 web framework written in Go.
Easy to learn while it's highly customizable, ideally suited for
both experienced and novice developers.

If you're coming from Node.js world, this is the expressjs for the Go Programming Language.

What people say What people say

Installation

The only requirement is the Go Programming Language, at least v1.7.

$ go get -u github.com/kataras/iris/iris

Overview

package main

import (
    "github.com/kataras/iris"
	"github.com/kataras/go-template/html"
)

func main(){

   // 6 template engines are supported out-of-the-box:
   //
   // - standard html/template
   // - amber
   // - django
   // - handlebars
   // - pug(jade)
   // - markdown
   //
   // Use the html standard engine for all files inside "./views" folder with extension ".html"
   iris.UseTemplate(html.New()).Directory("./views", ".html")

  // http://localhost:6111
  // Method: "GET"
  // Render ./views/index.html
  iris.Get("/", func(ctx *iris.Context){
      ctx.Render("index.html", nil)
  })

  // Group routes, optionally: share middleware, template layout and custom http errors.
  userAPI := iris.Party("/users", userAPIMiddleware).
			 Layout("layouts/userLayout.html")
     {
	   // Fire userNotFoundHandler when Not Found
	   // inside http://localhost:6111/users/*anything
	   userAPI.OnError(404, userNotFoundHandler)

       // http://localhost:6111/users
       // Method: "GET"
       userAPI.Get("/", getAllHandler)

	   // http://localhost:6111/users/42
       // Method: "GET"
	   userAPI.Get("/:id", getByIDHandler)

	   // http://localhost:6111/users
       // Method: "POST"
	   userAPI.Post("/", saveUserHandler)
     }

	 getByIDHandler := func(ctx *iris.Context){
	     // take the :id from the path, parse to integer
		// and set it to the new userID local variable.
		userID,_ := ctx.ParamInt("id")

		// userRepo, imaginary database service <- your only job.
		user := userRepo.GetByID(userID)

		// send back a response to the client,
		// .JSON: content type as application/json; charset="utf-8"
		// iris.StatusOK: with 200 http status code.
		//
		// send user as it is or make use of any json valid golang type,
		// like the iris.Map{"username" : user.Username}.
		ctx.JSON(iris.StatusOK, user)
	 }

  // Start the server at 0.0.0.0:6111
  iris.Listen(":6111")
}

Documentation

Testing

You can find RESTFUL test examples by navigating to the following links:

FAQ

Explore these questions and join to our community chat!

Philosophy

The Iris philosophy is to provide robust tooling for HTTP, making it a great solution for single page applications, web sites, hybrids, or public HTTP APIs. Keep note that, today, iris is faster than nginx itself.

Iris does not force you to use any specific ORM or template engine. With support for the most used template engines (6+), you can quickly craft the perfect application.

People & Support

The author of Iris is @kataras.

The Success of Iris belongs to YOU with your bug reports and feature requests that made this Framework so Unique.

Who is kataras?

Hi, my name is Gerasimos Maropoulos and I'm the author of this project, let me put a few words about me.

I started to design Iris the night of the 13 March 2016, some weeks later, iris started to became famous and I have to fix many issues and implement new features, but I didn't have time to work on Iris because I had a part time job and the (software engineering) colleague which I studied.

I wanted to make iris' users proud of the framework they're using, so I decided to interrupt my studies and colleague, two days later I left from my part time job also.

Today I spend all my days and nights coding for Iris, and I'm happy about this, therefore I have zero incoming value.

  • Star the project, will help you to follow the upcoming features.
  • Donate, if you can afford any cost.
  • Write an article about Iris or even post a Tweet.

If you are interested in contributing to the Iris project, please see the document CONTRIBUTING.

Contact

Besides the fact that we have a community chat for questions or reports and ideas, stackoverflow section for generic go+iris questions and the github issues for bug reports and feature requests, you can also contact with me, as a person who is always open to help you:

Versioning

Current: v6.1.3

v5: https://github.com/kataras/iris/tree/5.0.0

License

Unless otherwise noted, the source files are distributed under the MIT License found in the LICENSE file.

iris's People

Contributors

kataras avatar

Watchers

 avatar  avatar  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.