Skip to content

Commit

Permalink
docs: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mojixcoder authored Oct 21, 2023
1 parent 81cb257 commit dd33cdc
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,16 @@
___
**Kid** is a micro web framework written in Go. It aims to keep its core simple and yet powerful. It's fully compatible with net/http interfaces and can be adapted with other net/http compatible packages as well.

### Routing
### Features
___
**Kid** uses a tree-based router with a DFS traversal algorithm.
- Robust tree-based router.
- Path parameters.
- Router groups.
- Rich built-in responses(JSON, XML, string, string, byte).
- Middlewares.
- Zero dependency, only standard library.
- Compatible with net/http interfaces.
- Extendable, you can also use your own JSON, XML and HTML parsers.

### Versioning
___
Expand All @@ -17,7 +24,7 @@ This package follows [semver](https://semver.org/) versioning.
#### Quick Start
___

To install Kid Go 1.18 or higher is required: `go get github.com/mojixcoder/kid`
To install Kid Go 1.19 or higher is required: `go get github.com/mojixcoder/kid`

Create `server.go`:

Expand Down

0 comments on commit dd33cdc

Please sign in to comment.