diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 101a5a84..2500da73 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -5,4 +5,4 @@ patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
-custom: https://github.com/gofiber/fiber/
+custom: https://www.buymeacoffee.com/fenny
diff --git a/.github/README_NEW.md b/.github/README_NEW.md
index d2471628..b2ce2be9 100644
--- a/.github/README_NEW.md
+++ b/.github/README_NEW.md
@@ -2,7 +2,7 @@
# 🚀 Fiber
-[](https://github.com/gofiber/fiber/releases)  [](https://godoc.org/github.com/gofiber/fiber)  [](https://github.com/gofiber/fiber/blob/master/LICENSE) [](https://gitter.im/gofiber/community)
+[](https://github.com/gofiber/fiber/releases)  [](https://godoc.org/github.com/gofiber/fiber)  [](https://github.com/gofiber/fiber/blob/master/LICENSE) [](https://gitter.im/gofiber/community) [](https://gitpod.io/#https://github.com/gofiber/fiber)
**Fiber** — is an [Express.js](https://github.com/expressjs/express) **inspired** web framework build on [Fasthttp](https://github.com/valyala/fasthttp) for [Go](https://golang.org/doc/). Designed to **ease** things up for **fast** development with **zero memory allocation** and **performance** in mind.
@@ -14,15 +14,12 @@ package main
import "github.com/gofiber/fiber"
func main() {
- // Create new Fiber instance
app := fiber.New()
- // Create new route with GET method
app.Get("/", func(c *fiber.Ctx) {
- c.Write("Hello, World!")
+ c.Send("Hello, World!")
})
-
- // Start server on http://localhost:3000
+
app.Listen(3000)
}
```
diff --git a/.gitpod.yml b/.gitpod.yml
new file mode 100644
index 00000000..f1e44ef1
--- /dev/null
+++ b/.gitpod.yml
@@ -0,0 +1,2 @@
+tasks:
+ - init: go get && go build ./... && go test ./...
diff --git a/README.md b/README.md
index 4fce91da..99dc61ed 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
+
# 🚀 Fiber
-[](https://github.com/gofiber/fiber/releases)  [](https://godoc.org/github.com/gofiber/fiber)  [](https://github.com/gofiber/fiber/blob/master/LICENSE) [](https://gitter.im/gofiber/community)
+[](https://github.com/gofiber/fiber/releases)  [](https://godoc.org/github.com/gofiber/fiber)  [](https://github.com/gofiber/fiber/blob/master/LICENSE) [](https://gitter.im/gofiber/community) [](https://gitpod.io/#https://github.com/gofiber/fiber)