v1.0.0Go 1.22+

Documentation

Learn how to build fast and scalable web applications with Squirrel Framework.

Getting Started
Quick introduction to Squirrel Framework and basic concepts.
API Reference
Complete reference for all types, methods, and functions.
Guides
In-depth guides covering routing, middleware, and advanced topics.

Quick Example

package main

import "github.com/useranonymous001/squirrel"

func main() {
    server := SpawnServer()
    
    server.Get("/", func(req *Request, res *Response) {
        res.JSON(map[string]string{
            "message": "Hello, Squirrel!",
            "version": "1.0.0",
        })
        res.Send()
    })
    
    server.Listen(":8080")
}