Skip to content
/ Rapid Public

Simple Zero Dependency HTTP Rest Micro Framework 🌊

License

Notifications You must be signed in to change notification settings

Kiricon/Rapid

Repository files navigation

Build Status Go Report Card codecov GoDoc License: MIT

Rapid is a lightweight micro-framework built for quickly developing webservers and rest apis.

With a syntax and routing system inspired by Express.js, Flask & Laravel, developing end points is easy to pick up.


Install Rapid

go get github.com/Kiricon/Rapid


Hello World

package main

import (
	"github.com/Kiricon/Rapid"
)

func main() {

    app := rapid.App()

    app.Get("/", func(c rapid.Connection) {
        c.Send("Hello World")
    })


    app.Listen(3000)
}

Features

  • Routing
  • Url parameters
  • Templating
  • Static file serving
  • Zero Dependencies (Only standard Library calls)

Releases

No releases published

Packages

No packages published