bench
bench copied to clipboard
benchmark missing jetpath
How about adding Jetpath to the bench?
// in your src/index.routes.js
import { JetPath } from "jetpath";
const app = new JetPath({
port: 8080,
});
//? listening for requests
app.listen();
// = /
export async function GET_(ctx: AppCTX) {
ctx.send("hello world!");
}