THE LANGUAGE FOR BACKEND

Built-in HTTP. KGI Superpower. Zero Configuration.

server.rek
const app = http.new()

app.get("/", |req, res| {
    res.json({
        message: "Hello from REK",
        timestamp: time.now()
    })
})

app.listen(8080)

Why REK?

Batteries Included

HTTP server, File System, and Environment modules are built directly into the binary. No external dependencies needed.

KGI Architecture

Kernel Gateway Interface allows REK to interact directly with low-level system resources with minimal overhead.

Modern Syntax

Clean, expression-oriented syntax inspired by Rust and JavaScript. Familiar yet powerful.