An open API service indexing awesome lists of open source software.

https://github.com/binhvu3/go-projects

Repository of various golang projects and practices
https://github.com/binhvu3/go-projects

css fiber-framework golang htmx mongodb tanstack-react-query

Last synced: 6 months ago
JSON representation

Repository of various golang projects and practices

Awesome Lists containing this project

README

          

# GoLang Projects Repo
```
# Compile go code into binary
go build main.go

# Run compile program
./main

```

## Movie Name Update
Live update of Title and Director name to a database.
### Commands:
```
# Run go code directly
go run main.go

```
- Open `localhost:8000`

---

## htmx Upload Server
Browse, Upload, and Saved uploaded file to particular directory.
### Commands
```
# Run go program
go run main.go
```
- Open `localhost:8080`
- [Reference](https://dev.to/coderonfleek/file-uploads-with-htmx-and-golang-57ad)