Starter guide

WARNING

This guide is not intended to teach you how to use Goopen in new window, and would assume you already have basic knowledge about HTTP, web applications development and programming in Go.

Let's start with the minimal example you may have seen on the front page:

package main

import "github.com/flamego/flamego"

func main() {
	f := flamego.Classic()
	f.Get("/", func() string {
		return "Hello, Flamego!"
	})
	f.Run()
}

On line 6, the function flamego.Classicopen in new window creates and returns a classic Flame instance with a default list of middleware, including flamego.Logger, flamego.Recovery and flamego.Static.

On line 7, the method f.Getopen in new window registers the anonymous function (from line 7 to 9) to be the handler of the root path ("/") when a HTTP GET request comes in. In this case, the handler simply responds with a "Hello, Flamego!" string to the client.

On line 10, we start the web server by calling f.Runopen in new window. By default, the Flame instance listens on the address 0.0.0.0:2830.

Alright, now save the file and initialize a Go moduleopen in new window:

$ mkdir flamego-example
$ cd flamego-example
$ nano main.go

$ go mod init flamego-example
go: creating new go.mod: module flamego-example
$ go mod tidy
go: finding module for package github.com/flamego/flamego
...

$ go run main.go
[Flamego] Listening on 0.0.0.0:2830 (development)

Once you see the last line from your terminal, you're good to go!

You may verify the result by either visiting http://localhost:2830open in new window (why 2830?) in your browser, or through the folllowing curl command:

$ curl http://localhost:2830
Hello, Flamego!

💡 Did you know?

If you have used other Go web frameworks like Ginopen in new window or Echoopen in new window, you may be surprised that you can directly return a string in Flamego handlers as the response body to the client.

That is exactly right! Of course, this won't be the only way to make a response body (which would be a very unfriendly design!). If you're interested in reading more, the return values is the magician behind the scene.

Unfolding hidden parts

The minimal example aims for the least lines of code for a functioning example, but it inevitably hides some interesting details. Therefore, we're going to unfold those hidden parts to understand more about how things are assembled.

Let's first modify our main.go file as follows:

package main

import (
	"log"
	"net/http"

	"github.com/flamego/flamego"
)

func main() {
	f := flamego.Classic()
	f.Get("/{*}", printRequestPath)

	log.Println("Server is running...")
	log.Println(http.ListenAndServe("0.0.0.0:2830", f))
}

func printRequestPath(c flamego.Context) string {
	return "The request path is: " + c.Request().RequestURI
}

As you may have guessed, this program responds back with the request path that the client is requesting.

Take a look!

$ go run main.go
2021/11/18 14:00:03 Server is running...
$ curl http://localhost:2830
The request path is: /

$ curl http://localhost:2830/hello-world
The request path is: /hello-world

$curl http://localhost:2830/never-mind
The request path is: /never-mind

$ curl http://localhost:2830/bad-ass/who-am-i
404 page not found

So what is different now?

On line 11, we're still using the flamego.Classic to give us a classic Flame instance.

On line 12, instead of using an anonymous function, function printRequestPath is registered as the handler for all of the HTTP GET requests under root path ("/") using the notation {*}. The routing match stops at the slash ("/") as you can tell from the last test request to "http://localhost:2830/bad-ass/who-am-i" that gives us 404.

TIP

Try using the notation {**}, then redo all test requests and see what changes. If you're interested in reading more, the routing has the best resources you would want.

On line 15, the call of f.Run is replaced by the http.ListenAndServeopen in new window, which is the most common way to start a web server in Go, and maybe more familiar to you if you have used other Go web frameworks. This is possible with Flamego because Flame instances implement the http.Handleropen in new window interface. Therefore, a Flame instance can be plugged into anything that accepts a http.Handler, and is particularly useful when you want to progressively migrate an existing Go web application to use Flamego.

On line 18 to 20, we define the signature and the body of the printRequestPath. It accepts one argument with the type flamego.Context and returns a string. It then calls the Request method to retrieve the http.Requestopen in new window which contains the request path from the client.

💡 Did you know?

You may start wondering why we did not tell the Flame instance what arguments it should pass to the printRequestPath when the function is being invoked, and if you look up the definition of flamego.Handleropen in new window, it is nothing but an empty interface (interface{})open in new window.

So how does the Flame instance determine what to pass down to its handlers at runtime?

This is the beauty (or confusion? 😅) of the service injection, and flamego.Context is one of the default services that are injected into every request.

Wrapping up

At this point, you should have some basic understanding of what is Flamego and how to start using it in your Go web applications.

Starting a new journey is never easy, especially when there are a lot of new concepts and content to learn. Please don't hesitate reaching out for help and have a nice day!