bench icon indicating copy to clipboard operation
bench copied to clipboard

benchmark missing jetpath

Open FridayCandour opened this issue 8 months ago • 0 comments

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!");
}

FridayCandour avatar May 31 '24 21:05 FridayCandour