0A New Web Framework For Golang

Manpreet Singh
2 min readMay 15, 2022

Welcome back! Golang is an awesome programming language with a ton of capability, if you’re new to Golang, check out the link below to learn more about it:

So, let’s take a look at a new web framework for Golang, this framework is called Bud, luckily for us it’s hosted on GitHub, check out the link below to jump straight to their repository:

This specific framework is full stack, this framework also helps to write a lot of the boring code for you, allowing you to launch your websites faster, installing this framework is very easy, you can use the following command to do so:

$ curl -sf curl https://raw.githubusercontent.com/livebud/bud/main/install.sh | sh

At this point you can confirm that this framework completely installed by using the following command:

bud -h

At this point you are ready to go! You can create your first project by using the following commands:

$ bud create hello
$ cd hello

This command will create everything for you:

$ ls
go.mod node_modules/ package-lock.json package.json

You can then run this website on your local server with the following command:

$ bud run
| Listening on http://127.0.0.1:3000

You should then see this website on your localhost:

If you want to learn more about this framework, check out their introduction page below: