https://github.com/zaxwebs/hello-go
Learning Go API servers
https://github.com/zaxwebs/hello-go
go
Last synced: about 1 year ago
JSON representation
Learning Go API servers
- Host: GitHub
- URL: https://github.com/zaxwebs/hello-go
- Owner: zaxwebs
- Created: 2025-04-08T00:15:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-08T00:39:58.000Z (over 1 year ago)
- Last Synced: 2025-04-08T01:24:09.710Z (over 1 year ago)
- Topics: go
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello Go Web Server
A simple web server written in Go that responds with "Hello from Go!" on the root endpoint.
## Getting Started
### Prerequisites
- Go 1.x installed on your machine
### Running the Server
1. Clone this repository
2. Navigate to the project directory
3. Run the server:
```bash
go run main.go
```
The server will start on port 8080. Visit http://localhost:8080 in your browser to see the response.