Skip to content
Coderian edited this page Aug 16, 2025 · 1 revision

About Flint

Flint is a web backend framework developed in the Golang language.

Its purpose:

  • To be a developer-friendly
  • Fast,
  • Simple and powerful framework

How to download?

go get github.com/coderianx/flint

With this command, we include Flint in our project.

A Simple Server

package main

import (
    "github.com/coderianx/flint"
)

func main() {
    app := flint.NewServer()

    app.Handle("/", func(ctx *flint.Context) {
        ctx.String(200, "Hello Flint")
    })

    app.Run() // Defaul port: 8080
}

Some questions and answers

Question: What is Flint focused on?

Answer: Developer focused because developers deserve it so much

Clone this wiki locally