Skip to content
/ bo Public

๐Ÿš€ BootKit for easily bootstrapping multi-goroutine applications, CLIs, can be used as drop-in replacement of uber/fx

License

Notifications You must be signed in to change notification settings

nekomeowww/bo

Repository files navigation

bo

Go Reference

๐Ÿš€ bo, BootKit for easily bootstrapping multi-goroutine applications, CLIs, can be used as drop-in replacement of uber/fx

  • Forget about signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
  • Forget about context.WithCancel(context.Background())
  • Forget about error passing through multiple layers
bo.New()
bo.Add(YourService())
bo.Add(AnotherService())
bo.Start()

That's it!

Getting Started

go get github.com/nekomeowww/bo

Usage

package main

import (
	"context"
	"net/http"
	"time"

	"github.com/labstack/echo/v4"
	"github.com/nekomeowww/bo"
)

func NewServer1() *http.Server {
	e := echo.New()
	e.GET("/", func(c echo.Context) error {
		return c.String(http.StatusOK, "Hello, World!")
	})

	return &http.Server{
		Addr:        ":8080",
		Handler:     e,
		ReadTimeout: time.Second * 10,
	}
}

func NewServer2() *http.Server {
	e := echo.New()
	e.GET("/", func(c echo.Context) error {
		return c.JSON(http.StatusOK, map[string]interface{}{
			"message": "Hello, World!",
		})
	})

	return &http.Server{
		Addr:        ":8081",
		Handler:     e,
		ReadTimeout: time.Second * 10,
	}
}

func main() {
	app := bo.New()

	app.Add(func(ctx context.Context, lifeCycle bo.LifeCycle) error {
		srv := NewServer1()

		lifeCycle.Append(bo.Hook{
			OnStart: func(ctx context.Context) error {
				return srv.ListenAndServe()
			},
			OnStop: func(ctx context.Context) error {
				return srv.Shutdown(ctx)
			},
		})

		return nil
	})

	app.Add(func(ctx context.Context, lifeCycle bo.LifeCycle) error {
		srv := NewServer2()

		lifeCycle.Append(bo.Hook{
			OnStart: func(ctx context.Context) error {
				return srv.ListenAndServe()
			},
			OnStop: func(ctx context.Context) error {
				return srv.Shutdown(ctx)
			},
		})

		return nil
	})

	app.Start()
}

๐Ÿค  Spec

GoDoc: https://godoc.org/github.com/nekomeowww/bo

๐Ÿ‘ช Other family members of anyo

๐ŸŽ† Other cool related Golang projects I made & maintained

About

๐Ÿš€ BootKit for easily bootstrapping multi-goroutine applications, CLIs, can be used as drop-in replacement of uber/fx

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages