Bunify
Bunify is a simplistic routing framework for Bun.sh, designed to bring an Express.js-like experience to the Bun ecosystem.
Features
- Simplified HTTP methods (
app.get
, app.post
, app.put
, app.delete
) - RegEx support (
/ab+cd
, /ab*cd
, /a(cd)?e
) - Easy setup and usage
- Dynamic URL routing (
/users/:id
) (🚧 In progress)
Installation
Ensure you have Bun.sh installed on your machine.
git clone https://github.com/khattakdev/bunify.git
cd bunify
bun install
Usage
import App from "bunify";
const app = new App();
app.get("/", (req, res) => {
return res.send("Hello World!");
});
app.listen(3001, () => {
console.log("Server is running on http://localhost:3001");
});
Testing
Bunify uses Bun's built-in testing utilities for writing and running tests.
bun test
Contributing
Feel free to fork this repository, submit issues, or open pull requests to help improve Bunify.
License
MIT