Giter Site home page Giter Site logo

spoon's Introduction

Package spoon

Project status

Package spoon is used to create zero-downtime upgradable programs and includes logic to gracefully handle TCP connections, including HTTP.

NOTE: I've been using this in a production app for a few months without any problems whatsoever, so it should be good and stable.

Contrived Example - using HTTP

package main

import (
	"log"
	"net/http"

	"github.com/go-playground/lars"
	"github.com/go-playground/lars/examples/middleware/logging-recovery"
	"github.com/go-playground/spoon"
)

func main() {

	// setup TCP connections
	sp := spoon.New()

	ltcp, err := sp.ListenTCP(":4444")
	if err != nil {
		panic(err)
	}

	// let spoon know your; done setting up connections... if any
	err = sp.ListenerSetupComplete()
	if err != nil {
		panic(err)
	}

	l := lars.New()
	l.Use(middleware.LoggingAndRecovery)

	l.Get("/", GetHome)

	// OPTIONAL: use TCP connection for HTTP, could have just used raw connection for non HTTP logic.
	err = ltcp.ListenAndServe(":4444", l.Serve())
	if err != nil {
		panic(err)
	}

	// Run, will block here
	sp.Run()
}

// GetHome ...
func GetHome(l lars.Context) {

	if err := l.Text(http.StatusOK, "Why spoon? because it doesn't fork!"); err != nil {
		log.Panic(err)
	}
}

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.