jett

package module
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 22, 2022 License: BSD-3-Clause Imports: 13 Imported by: 0

README


GitHub go.mod Go version GitHub release (latest by date including pre-releases)

Jett is a lightweight micro-framework for building Go HTTP services. It builds a layer on top of HttpRouter to enable subrouting and flexible addition of middleware at any level - root, subrouter, a specific route.

Jett strives to be simple and easy to use with minimal abstractions. The core framework is less than 300 loc but is designed to be extendable with middleware. Comes packaged with a development server equipped for graceful shutdown and a few essential middleware.

Key Features :

  • Build REST APIs quickly with minimal abstraction!

  • Add middleware at any level - Root, Subrouter or in a specific route!

  • Built-in development server with support for graceful shutdown and shutdown functions.

  • Highly flexible & easily customisable with middleware.

  • Helpful response renderers for HTML, JSON, XML and Plain Text.

  • Clean and simple code. Jett's core is less than 300 LOC.

  • Extremely lightweight. Built on top of net/http & HttpRouter.

package main

import (
	"fmt"
	"net/http"
	"github.com/saurabh0719/jett"
	"github.com/saurabh0719/jett/middleware"
)

func main() {

	r := jett.New()

	r.Use(middleware.RequestID, middleware.Logger)

	r.GET("/", Home)
	
	r.Run(":8000")
}

func Home(w http.ResponseWriter, req *http.Request) {
	jett.JSON(w, "Hello World", 200)
}

Install -

$ go get github.com/saurabh0719/jett

Table of Contents :


Using Middleware

Jett supports any Middleware of the type func(http.Handler) http.Handler.

Some essential middleware are provided out of the box in github.com/saurabh0719/jett/middleware -

  • RequestID : Injects a request ID into the context of each request

  • Logger : Log request paths, methods, status code as well as execution duration

  • BasicAuth : Basic Auth middleware, RFC 2617, Section 2

  • Recoverer : Recover and handle panic

  • NoCache : Sets a number of HTTP headers to prevent a router (or subrouter) from being cached by an upstream proxy and/or client

  • HeartBeat : Set up an endpoint to conveniently ping your server.

  • Timeout : Timeout is a middleware that cancels context after a given timeout

func (r *Router) Use(middleware ...func(http.Handler) http.Handler)

Middleware can be added at the at a Router level (root, subrouter) ...

package main

import (
	"fmt"
	"net/http"
	"github.com/saurabh0719/jett"
	"github.com/saurabh0719/jett/middleware"
)

func main() {

	r := jett.New()

	r.Use(middleware.RequestID, middleware.Logger)

	r.GET("/", Home)
	
	r.Run(":8000")
}

OR on each individual route

func (r *Router) GET(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

To access a router's middleware stack -

// Middleware returns a slice of the middleware stack for the router
func (r *Router) Middleware() []func(http.Handler) http.Handler

Example -

func main() {

	r := jett.New()

	r.GET("/", Home, middleware.Logger, middleware.Recover)
	
	r.Run(":8000")
}

Go back to the table of contents


Subrouter

The Subrouter function returns a new Router instance.

Example -

package main

import (
	"fmt"
	"net/http"
	"github.com/saurabh0719/jett"
	"github.com/saurabh0719/jett/middleware"
)
func main() {

	r := jett.New()

	r.Use(middleware.RequestID)

	r.GET("/", Home)

	sr := r.Subrouter("/about")
	sr.Use(middleware.Logger)
	sr.GET("/", About, middleware.NoCache)

	r.Run(":8000")
}

func Home(w http.ResponseWriter, req *http.Request) {
	jett.JSON(w, "Hello World", 200)
}

func About(w http.ResponseWriter, req *http.Request) {
	jett.TEXT(w, "About", 200)
}

Register routes

// These functions optionally accept their own unique middleware for their handlers

func (r *Router) GET(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

func (r *Router) HEAD(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

func (r *Router) OPTIONS(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

func (r *Router) POST(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

func (r *Router) PUT(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

func (r *Router) PATCH(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

func (r *Router) DELETE(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

// Any() creates routes for the methods mentioned above ^ - it DOES NOT actually match any random arbitrary method method
func (r *Router) Any(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

You can also directly call the Handle function that accepts an http.Handler

func (r *Router) Handle(method, path string, handler http.Handler, middleware ...func(http.Handler) http.Handler)

Go back to the table of contents


Serving static files

The ServeFiles is a wrapper around httprouter.ServeFiles to serve statice assets.

func (r *Router) ServeFiles(path string, root http.FileSystem)

From HttpRouter router.go

ServeFiles serves files from the given file system root. The path must end with "/*filepath", files are then served from the local path /defined/root/dir/*filepath.

For example if root is "/etc" and *filepath is "passwd", the local file "/etc/passwd" would be served. Internally a http.FileServer is used, therefore http.NotFound is used instead of the Router's NotFound handler.

To use the operating system's file system implementation, use http.Dir: router.ServeFiles("/src/*filepath", http.Dir("/var/www"))

Eg. r.ServeFiles("/static/*filepath", http.Dir("static"))

See a full example here


Path & Query parameters

Path parameters -

// Helper function to extract path params from request Context()
// as a map[string]string for easy access
func URLParams(req *http.Request) map[string]string

Query parameters -

// Helper function to extract query params as a map[string][]string
// Eg. /?one=true,false&two=true
// {"two" : ["true"], "one": ["true, "false"]}
func QueryParams(req *http.Request) map[string][]string

Example -

func main() {

	r := jett.New()

	r.GET("/person/:id", Person)

	r.Run(":8000")
}

func Person(w http.ResponseWriter, req *http.Request) {
	params := jett.URLParams(req)
	
    // do something and prepare resp

	jett.JSON(w, resp, http.StatusOK)
}

Go back to the table of contents


Development Server

Jett comes with a built-in development server that handles graceful shutdown. You can optionally specify multiple cleanup functions to be called on shutdown.

Run without context -

func (r *Router) Run(address string, onShutdownFns ...func())
func (r *Router) RunTLS(address, certFile, keyFile string, onShutdownFns ...func())

Run with context -

Useful when you need to pass a top-level context. Shutdown process will begin when the parent context cancels.

func (r *Router) RunWithContext(ctx context.Context, address string, onShutdownFns ...func())
func (r *Router) RunTLSWithContext(ctx context.Context, address, certFile, keyFile string, onShutdownFns ...func())

Example -

server.go


package main

import (
	"context"
	"fmt"
	"github.com/saurabh0719/jett"
	"net/http"
	"time"
)

func main() {

	r := jett.New()

	r.GET("/", Home)

	// automatically trigger shutdown after 10s
	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
	defer cancel()

	r.RunWithContext(ctx, ":8000", shutdownOne, shutdownTwo)
}

func Home(w http.ResponseWriter, req *http.Request) {
	jett.TEXT(w, "Hello World!", 200)
}

// Shutdown functions called during graceful shutdown
func shutdownOne() {
	time.Sleep(1 * time.Second)
	fmt.Println("shutdown function 1 complete!")
}

func shutdownTwo() {
	time.Sleep(1 * time.Second)
	fmt.Println("shutdown function 2 complete!")
}

$ go run server.go

Please note that this Server is for development only. A production server should ideally specify timeouts inside http.Server. Any contributions to build upon this is welcome.

Go back to the table of contents


Response renderers

Optional helpers for formatting the output. Content type is set automatically.

// JSON output - Content-Type - application/json
func JSON(w http.ResponseWriter, data interface{}, status int)

// Plain Text output - Content-Type - text/plain
func Text(w http.ResponseWriter, data string, status int)

// XML output - Content-Type - application/xml
func XML(w http.ResponseWriter, data interface{}, status int)

For html templates (status is set internally, default 200 OK else Server error)

// Content-Type - text/html
func HTML(w http.ResponseWriter, data interface{}, htmlFiles ...string) 

data can be nil or any struct that the template needs. You can also send multiple templates in order of parent -> child

jett.HTML(w, nil, "layout.html", "index.html")

A simple example -

Directory Structure -

example/
	- static/
		- styles.css
	- index.html
	- server.go
  • index.html

<!DOCTYPE html>
<html>
<head>
	<link rel="stylesheet" href="/static/styles.css">
</head>

<body>
	<h1>This is a heading</h1>
</body>
</html>
  • styles.css
body {
    background-color: #FFD500;
}
  • server.go
package main

import (
	"fmt"
	"net/http"
	"github.com/saurabh0719/jett"
	"github.com/saurabh0719/jett/middleware"
)

func main() {

	r := jett.New()

	r.Use(middleware.RequestID, middleware.Logger)

	r.ServeFiles("/static/*filepath", http.Dir("static"))

	r.GET("/:name", Home)

	r.Run(":8000")
}

func Home(w http.ResponseWriter, req *http.Request) {
	params := jett.URLParams(req)
	p := Person{
		name: params["name"]
	}
	jett.HTML(w, p, "index.html")
}

Contribute

Author and maintainer - Saurabh Pujari

Logo design - Akhil Anil

Actively looking for Contributors to further improve upon this project. If you have any interesting ideas or feature suggestions, don't hesitate to open an issue!

Go back to the table of contents


Documentation

Overview

Jett is a lightweight micro-framework for building Go HTTP services.

Jett builds a layer on top of HttpRouter to enable subrouting and flexible addition of middleware at any level - root, subrouter or a specific route!

Built for Go 1.7 & above.

Example :

package main

import (
	"fmt"
	"net/http"
	"github.com/saurabh0719/jett"
	"github.com/saurabh0719/jett/middleware"
)

func main() {

	r := jett.New()

	r.Use(middleware.RequestID, middleware.Logger)

	r.GET("/", Home)

	r.Run(":8000")
}

func Home(w http.ResponseWriter, req *http.Request) {
	jett.JSON(w, "Hello World", 200)
}

Jett strives to be simple and easy to use with minimal abstractions. The core framework is less than 300 loc but is designed to be extendable with middleware. Comes packaged with a development server equipped for graceful shutdown and a few essential middleware.

Read https://github.com/saurabh0719/jett#readme for further details.

LICENSE

BSD 3-Clause License. Copyright (c) 2022, Saurabh Pujari. All rights reserved.

Index

Constants

View Source
const (
	Version = "0.3.0"
)

Jett package version

Variables

This section is empty.

Functions

func HTML added in v0.3.0

func HTML(w http.ResponseWriter, data interface{}, htmlFiles ...string)

HTML template renderer - Sets the Content-Type header to text/html. Can render nested html files. Files need to ne sent in order of parent -> children

func JSON added in v0.1.1

func JSON(w http.ResponseWriter, data interface{}, status int)

JSON renderer. Sets the status code and the Content-Type header to application/json

func QueryParams

func QueryParams(req *http.Request) map[string][]string

Helper function to extract query params as a map[string][]string

Eg - /?one=true,false&two=true

Result - {"two" : ["true"], "one": ["true, "false"]}

func Text added in v0.3.0

func Text(w http.ResponseWriter, data string, status int)

Plain Text renderer. Sets the status code and the Content-Type header to text/plain

func URLParams added in v0.2.0

func URLParams(req *http.Request) map[string]string

Helper function to extract URL params from request Context() as a map[string]string for easy access.

func XML added in v0.1.1

func XML(w http.ResponseWriter, data interface{}, status int)

XML renderer. Sets the Content-Type header to application/xml

Types

type Router

type Router struct {
	// contains filtered or unexported fields
}

Jett's Router is built on top of julienschmidt's httprouter. https://github.com/julienschmidt/httprouter

func New

func New() *Router

Create a new instance of the Jett's Router

func (*Router) Any added in v0.3.0

func (r *Router) Any(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

Assigns a HandlerFunc to the GET, HEAD, OPTIONS, POST, PUT, PATCH & DELETE method for the given path. It DOES NOT actually match any random arbitrary method.

func (*Router) DELETE

func (r *Router) DELETE(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

Assigns a HandlerFunc to the DELETE method for the given path. Route-specific middleware can be added as well.

func (*Router) GET

func (r *Router) GET(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

Assigns a HandlerFunc to the GET method for the given path. Route-specific middleware can be added as well.

func (*Router) HEAD added in v0.3.0

func (r *Router) HEAD(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

Assigns a HandlerFunc to the HEAD method for the given path. Route-specific middleware can be added as well.

func (*Router) Handle

func (r *Router) Handle(method, path string, handler http.Handler, middleware ...func(http.Handler) http.Handler)

Register the path and method to the given handler. Also applies the middleware to the Handler

func (*Router) Handler

func (r *Router) Handler() http.Handler

creates an http.Handler for the router + middleware stack

func (*Router) Middleware added in v0.3.0

func (r *Router) Middleware() []func(http.Handler) http.Handler

Middleware returns a slice ([]func(http.Handler) http.Handler) of the middleware stack for the router

func (*Router) NotFound added in v0.0.2

func (r *Router) NotFound(handlerFn http.HandlerFunc)

Assigns a HandlerFunc as http NotFound handler

func (*Router) OPTIONS

func (r *Router) OPTIONS(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

Assigns a HandlerFunc to the OPTIONS method for the given path. Route-specific middleware can be added as well.

func (*Router) PATCH

func (r *Router) PATCH(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

Assigns a HandlerFunc to the PATCH method for the given path. Route-specific middleware can be added as well.

func (*Router) POST

func (r *Router) POST(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

Assigns a HandlerFunc to the POST method for the given path. Route-specific middleware can be added as well.

func (*Router) PUT

func (r *Router) PUT(path string, handlerFn http.HandlerFunc, middleware ...func(http.Handler) http.Handler)

Assigns a HandlerFunc to the PUT method for the given path. Route-specific middleware can be added as well.

func (*Router) Run

func (r *Router) Run(address string, onShutdownFns ...func())

development server that handles graceful shutdown. onShutdownFns -> Cleanup functions to run during shutdown

func (*Router) RunTLS

func (r *Router) RunTLS(address, certFile, keyFile string, onShutdownFns ...func())

development server that runs with TLS and handles graceful shutdown. onShutdownFns -> Cleanup functions to run during shutdown

func (*Router) RunTLSWithContext added in v0.1.1

func (r *Router) RunTLSWithContext(ctx context.Context, address, certFile, keyFile string, onShutdownFns ...func())

development server that runs with TLS and handles graceful shutdown. ctx -> coordinates shutdown with a top level context

func (*Router) RunWithContext added in v0.1.1

func (r *Router) RunWithContext(ctx context.Context, address string, onShutdownFns ...func())

development server that handles graceful shutdown. ctx -> coordinates shutdown with a top level context

func (*Router) ServeFiles

func (r *Router) ServeFiles(path string, root http.FileSystem)

Serve Static files from a directory. From github.com/julienschmidt/httprouter -> router.go :

 ServeFiles serves files from the given file system root.
 The path must end with "/*filepath", files are then served from the local
 path /defined/root/dir/*filepath.

 For example if root is "/etc" and *filepath is "passwd", the local file
 "/etc/passwd" would be served.

 Internally a http.FileServer is used, therefore http.NotFound is used instead
 of the Router's NotFound handler.

	To use the operating system's file system implementation,
 	use http.Dir:
    		router.ServeFiles("/src/*filepath", http.Dir("/var/www"))

func (*Router) ServeHTTP

func (r *Router) ServeHTTP(w http.ResponseWriter, req *http.Request)

Implement http.Handler interface

func (*Router) Subrouter

func (r *Router) Subrouter(path string) *Router

Create a new subrouter. The subrouter automatically gets assigned the middleware from the parent router

func (*Router) Use

func (r *Router) Use(middleware ...func(http.Handler) http.Handler)

Add a middlware to the Router's middlware stack. To use built-in essential middleware,

import "github.com/saurabh0719/jett/middleware"

Read https://github.com/saurabh0719/jett#middleware for further details.

Directories

Path Synopsis
The middleware package contains some essential middleware for use with Jett! https://github.com/saurabh0719/jett
The middleware package contains some essential middleware for use with Jett! https://github.com/saurabh0719/jett

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL