Code Monkey home page Code Monkey logo

gouter's Introduction

What it is?

Gouter is implementation of http router created for understanding principle of trie data structure and prefix find algorithms. It has a pretty simple code to understand, but the functionality is poor. The idea of this project is the most readable code for understanding basic functionality of Radix tree.

Usage

package main

import (
	"github.com/furdarius/gouter"
	"io"
	"net/http"
)

func Index(w http.ResponseWriter, req *http.Request, params gouter.Params) {
	io.WriteString(w, "Index Method")
}

func Show(w http.ResponseWriter, req *http.Request, params gouter.Params) {
	// gouter.Params is just map where key is param name
	io.WriteString(w, "Show Method. ID: "+params["id"])
}

func Edit(w http.ResponseWriter, req *http.Request, params gouter.Params) {
	io.WriteString(w, "Edit Method")
}

func main() {
	gouterInstance := gouter.New()

	gouterInstance.Add("GET", "/", func(w http.ResponseWriter, req *http.Request, params gouter.Params) {
		io.WriteString(w, "My url is "+req.URL.String())
	})

	gouterInstance.Add("GET", "/list", Index)

	gouterInstance.Add("GET", "/list/:id", Show)

	gouterInstance.Add("GET", "/list/:id/edit", Edit)

	// You can set custom 404 error handler
	gouterInstance.SetNotFoundHandler(func(w http.ResponseWriter, req *http.Request) {
		http.Error(w, "404 custom error!", http.StatusNotFound)
	})

	http.ListenAndServe(":8080", gouterInstance)
}

gouter's People

Contributors

furdarius avatar

Stargazers

 avatar  avatar

Forkers

scrambleshell

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.