@idiotstudios/piko
v0.1.0
Published
A lightweight Express alternative by IdiotStudios
Maintainers
Readme
🧠 Piko
A lightweight, modern Express alternative made by IdiotStudios. Designed to be simple, fast, and fully compatible with the familiar Express API.
import piko from "piko";
const app = piko();
app.get("/", (req, res) => res.send("Hello from Piko!"));
app.listen(3000);🚀 Features
- Express-like API (
req,res,next) - Middleware, Routers, Params
- Built-in JSON + Static middleware
- Zero dependencies
- ESM-first design
💡 Contributing
Open issues and PRs are welcome! Let's make Piko a great Express alternative together!
