title | keywords | description | ||
---|---|---|---|---|
File Server |
|
Serving static files. |
This project demonstrates how to set up a simple file server in a Go application using the Fiber framework.
Ensure you have the following installed:
- Golang
- Fiber package
-
Clone the repository:
git clone https://github.com/gofiber/recipes.git cd recipes/file-server
-
Install dependencies:
go get
-
Start the application:
go run main.go
-
Access the file server at
http://localhost:3000
.
Here is an example main.go
file for the Fiber application serving static files:
package main
import (
"log"
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
// Serve static files from the "public" directory
app.Static("/", "./public")
log.Fatal(app.Listen(":3000"))
}