# Skykit
Skykit is a high-performance web framework for building web applications for The Skyscape. This is based on [The Skyscape Devtools](https://github.com/The-Skyscape/devtools), which provides the set of tools we use for building and deploying The Skyscape's web services.
## Getting Started
To get started first create a new project and install `skykit`:
```bash
mkdir my-project
cd my-project
go mod init my-project
go get https://theskyscape.com/repo/skykit@main
```
Next, create a new file `main.go` and add the following code:
```go
package main
import (
"net/http"
"theskyscape.com/repo/skykit"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, World!"))
})
skykit.Serve(nil)
}
```
Finally, run the application:
```bash
go run main.go
```
Visit `http://localhost:5000` to see the result.