https://github.com/skeptycal/fiber
A small example web server app using Go Fiber.
https://github.com/skeptycal/fiber
api fiber go golang macos server webapp
Last synced: 2 months ago
JSON representation
A small example web server app using Go Fiber.
- Host: GitHub
- URL: https://github.com/skeptycal/fiber
- Owner: skeptycal
- License: mit
- Created: 2020-12-17T04:28:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-17T04:30:29.000Z (over 5 years ago)
- Last Synced: 2025-03-11T17:22:21.482Z (over 1 year ago)
- Topics: api, fiber, go, golang, macos, server, webapp
- Language: Go
- Homepage: https://skeptycal.github.io/fiber/
- Size: 4.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# gorepo
>Tricky and fun ansi text utilities for Go programs. The obligatory ANSI CLI module predominantly from the Go standard library.
---
 
[](code-of-conduct.md)
 
---
## Getting Started
### Prerequisites
Developed with Go 1.15.5 darwin/amd64 (macOS Big Sur)
Tested on Go 1.13+
---
### Installation
The easiest way is to clone the repository with Go and install from there.
```bash
# add repo to $GOPATH
go get github.com/skeptycal/anansi
cd ${GOPATH}/src/github.com/skeptycal/anansi
go test -v
go install
```
---
### Basic Usage
>This is a copy of the sample script available in the `sample` folder:
```go
package main
import "github.com/skeptycal/anansi"
func main() {
anansi.Sample()
}
```
To try it out:
```bash
# change to the sample folder
cd sample
# run the main.go program
go run ./main.go
# You should see the following output demonstrating various color combinations.
```


---
## Code of Conduct and Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us. Please read the [Code of Conduct](CODE_OF_CONDUCT.md) for details before submitting anything.
---
## Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
---
## Contributors
- Michael Treanor ([GitHub][github] / [Twitter][twitter]) - Initial work, updates, maintainer
- [Francesc Campoy][Campoy] - Inspiration and great YouTube videos!
See also the list of contributors who participated in this project.
>Much of the basic types, constants, and terminal checks in 'anansi_const.go' are based on the very popular and well documented [color package][fatih].
---
## License
Licensed under the MIT - see the [LICENSE](LICENSE) file for details.
[twitter]: (https://www.twitter.com/skeptycal)
[github]: (https://github.com/skeptycal)
[Campoy]: (https://github.com/campoy)
[fatih]: (https://github.com/fatih/color)