Skip to content

hyperscale-stack/server

Repository files navigation

Hyperscale Server Last release Documentation

Go Report Card

Branch Status Coverage
master Build Status Coveralls

The Hyperscale server library provides a simple server over Fiber.

Example

package main

import (
    "github.com/hyperscale-stack/server"
)

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

    app.AddController(&myController{})

    app.Listen(":3000")
}

License

Hyperscale Server is licensed under the MIT license.