https://github.com/novusedge/web-byte
A Web-Server utility written in golang
https://github.com/novusedge/web-byte
Last synced: 5 months ago
JSON representation
A Web-Server utility written in golang
- Host: GitHub
- URL: https://github.com/novusedge/web-byte
- Owner: NovusEdge
- License: mpl-2.0
- Created: 2022-04-07T18:00:33.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-15T12:35:27.000Z (about 4 years ago)
- Last Synced: 2024-06-21T10:26:37.521Z (about 2 years ago)
- Language: Go
- Size: 119 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# byte-server
A Web-Server utility written in Golang.
# Contents
- [Installation](#installation)
- [Usage](#usage)
- [License Information](#license)
# Installation :floppy_disk:
The project can either be used as a package and be imported into programs like so:
```go
// For the source:
import "github.com/NovusEdge/web-byte/src"
// For the server handlers:
import "github.com/NovusEdge/web-byte/src"
```
Alternatively, this repository can be cloned for server code generation or directly running `webbyte.go` to create the web server.
```console
user@machine$ git clone https://github.com/NovusEdge/web-byte.git
user@machine$ cd web-byte
user@machine$ bash setup/setup.bash
# Run the program directly
user@machine$ go run webbyte.go
# Or build it and run it directly
user@machine$ go build webbyte.go && ./webbyte
```
**NOTE**: _The CLI for code generation is currently under development._
# Usage :book:
The complete usage information, along with documentation can be found in the [project wiki](https://github.com/NovusEdge/web-byte/wiki)
# License :scroll:
This project is licensed under the `Mozilla Public License v2.0`. For more details check the [LICENSE file](LICENSE)