boost

package module
v1.0.0-dev.212 Latest Latest
Warning

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

Go to latest
Published: Jul 18, 2025 License: MIT Imports: 9 Imported by: 0

README

Boost

Go

Overview

Boost is a modular and extensible framework for Go application development, designed to simplify the creation of robust, scalable, and observable services. The framework provides a comprehensive set of components that can be used independently or combined to build complete applications.

Key Features

  • Modular Architecture: Independent components that can be used as needed
  • Dependency Injection: Flexible system for managing dependencies between components
  • Integrated Observability: Native support for metrics, logging, and tracing
  • Adapters for Popular Libraries: Consistent wrappers for various libraries in the Go ecosystem
  • Design Patterns: Implementations of patterns such as Factory, Middleware, and Wrapper
  • CloudEvents Support: Native integration with the CloudEvents standard
  • Extensibility: Easy to add support for new libraries and frameworks

Project Structure

The project is organized into modular packages, each with specific responsibilities:

  • bootstrap: Components for application initialization
  • examples: Framework usage examples
  • extra: Additional functionalities (health checks, middleware, multiserver)
  • factory: Factory pattern implementations for various components
  • fx: Dependency injection and lifecycle management
  • model: Data structures and interfaces definitions
  • utils: Various utilities
  • wrapper: Adapters for external libraries (cache, config, log, publisher)

Getting Started

Prerequisites
  • Go 1.18 or higher
  • Specific dependencies vary according to the components used
Installation
go get github.com/xgodev/boost
Basic Example
package main

import (
	"github.com/xgodev/boost"
	"github.com/xgodev/boost/factory/contrib/go.uber.org/zap/v1"
	"github.com/xgodev/boost/wrapper/log"
	"os"
)

func init() {
	os.Setenv("BOOST_FACTORY_ZAP_CONSOLE_FORMATTER", "JSON")
	os.Setenv("BOOST_FACTORY_ZAP_CONSOLE_LEVEL", "DEBUG")
}

func main() {
	boost.Start()
	log.Set(zap.NewLogger())
	log.Infof("hello world!!")
}

Main Components

Bootstrap

The Bootstrap package provides components for application initialization, including support for serverless functions and event processing.

Bootstrap Documentation

Factory

The Factory package implements the Factory design pattern for various components, facilitating the creation and configuration of complex objects.

Factory Documentation

Wrapper

The Wrapper package provides adapters for external libraries, including cache, configuration, logging, and message publishing.

Wrapper Documentation

FX

The FX package provides dependency injection and component lifecycle management functionalities.

FX Documentation

Extra

The Extra package includes additional functionalities such as health checks, middleware, and support for multiple servers.

Extra Documentation

Boost offers extensive integrations with a wide range of technologies:

Cloud Providers
  • AWS: AWS SDK integration for various services
  • Google Cloud Platform:
    • Pub/Sub
    • BigQuery
    • Firestore
    • API integration
    • gRPC
Databases
  • MongoDB: Native driver integration
  • PostgreSQL: pgx driver
  • Oracle: godror driver
  • CockroachDB: Compatible with PostgreSQL drivers
  • Cassandra: gocql driver
  • BuntDB: In-memory key/value database
  • MemDB: In-memory database with immutable radix tree
Caching
  • Redis: go-redis client
  • BigCache: In-memory caching system
  • FreeCache: Zero GC cache library
Messaging & Event Systems
  • NATS: Lightweight messaging system
  • Kafka: Confluent Kafka Go client
  • CloudEvents: SDK for CloudEvents standard
  • Go Cloud Pub/Sub: Cloud-agnostic pub/sub API
Web & API
  • Echo: High performance web framework
  • gRPC: High performance RPC framework
  • GraphQL: GraphQL server implementation
  • Swagger: API documentation with echo-swagger
Observability
  • Prometheus: Metrics and monitoring
  • OpenTelemetry: Observability framework
  • Datadog: APM and monitoring
  • Zap: Structured logging
  • Zerolog: Zero-allocation JSON logger
  • Logrus: Structured logger
Configuration
  • Koanf: Lightweight, extensible configuration management
  • Cobra: CLI application library
  • Viper: Configuration solution (via Koanf)
Resilience & Patterns
  • Hystrix: Latency and fault tolerance library
  • Ants: Goroutine pool
  • FTP: FTP client
  • Kubernetes: Client-go integration
  • Vault: HashiCorp Vault client
Serialization
  • JSON: Multiple implementations (standard, go-json)
  • MessagePack: Binary serialization
  • GOB: Go's native binary format

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository
  2. Create a branch for your feature (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the terms included in the LICENSE file.

Contact

For questions, suggestions, or contributions, please open an issue in the GitHub repository.


Developed with ❤️ by the xgodev community.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ApplicationName

func ApplicationName() string

func Start

func Start()

Types

This section is empty.

Directories

Path Synopsis
examples
extra
factory
contrib/go-resty/resty/v2/plugins/contrib/dubonzi/otelresty/v1
This package implements integration between the go-resty (https://github.com/go-resty/resty) library and OpenTelemetry.
This package implements integration between the go-resty (https://github.com/go-resty/resty) library and OpenTelemetry.
contrib/go.mongodb.org/mongo-driver/v1/plugins/contrib/go.opentelemetry.io/contrib/v0
This package implements integration between the official go mongodb driver (https://github.com/mongodb/mongo-go-driver) and OpenTelemetry.
This package implements integration between the official go mongodb driver (https://github.com/mongodb/mongo-go-driver) and OpenTelemetry.
contrib/labstack/echo/v4/plugins/contrib/go.opentelemetry.io/contrib/v0
This package implements integration between echo (https://github.com/labstack/echo) and OpenTelemetry.
This package implements integration between echo (https://github.com/labstack/echo) and OpenTelemetry.
fx
model
errors
Package errors provides an easy way to annotate errors without losing the original error context.
Package errors provides an easy way to annotate errors without losing the original error context.
utils
wrapper
config
Package config provides a wrapper around koanf.
Package config provides a wrapper around koanf.
log
Package log provides a generic interface around loggers.
Package log provides a generic interface around loggers.

Jump to

Keyboard shortcuts

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