Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amankanojiya/golang-projects
https://github.com/amankanojiya/golang-projects
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/amankanojiya/golang-projects
- Owner: AMANKANOJIYA
- Created: 2022-05-27T15:34:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-11T10:19:22.000Z (about 1 year ago)
- Last Synced: 2024-11-12T07:40:39.296Z (2 months ago)
- Language: Go
- Size: 9.77 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golang-Projects
### Project 1 (Static File Serving Web server)
- This application is built to server Static HTML files as a server in Go lang
### Project 2 (Dynamic Web API for Movies)
- This application is Built to do CRUD operations on Movies data stored in a variable
### Project 3 (Dynamic Web API for Book Management With Database)
- This application is Built to do CRUD operations on Book data stored in a SQL database.
In addition to this, it also contains a Postman API documentation which can be installed and used to interact with this API
### Project 4 (Email Domain Verification)
- This Application can be used to verify the Domain. We can pass the link as an argument while running this file
we can scale it for extensive or stock links ( what all to check:- Domain, MX, SPF, DMARC)
### Project 5 (LoadBalancer)
- Loadbalancer to manage the load on a server. This Loadbalancer is implemented using an elementary algorithm
or Round Robin. It also contains a Helthcheck system which chek the active servers and notifies the Loadbalancer
so the traffic can redirect to healthy servers. the code also contains the code for the Server so that we can test
the code