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
- Host: GitHub
- URL: https://github.com/binhvu3/go-projects
- Owner: binhvu3
- License: apache-2.0
- Created: 2024-09-26T01:42:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-06T17:37:12.000Z (over 1 year ago)
- Last Synced: 2024-11-24T05:11:45.535Z (over 1 year ago)
- Topics: css, fiber-framework, golang, htmx, mongodb, tanstack-react-query
- Language: Go
- Homepage:
- Size: 55.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)