Introduction to Jetpath

Write Once, Run Cross-runtime

Jetpath is more than just another framework - itโ€™s your new best friend in backend development, designed to make your life easier while giving you unprecedented flexibility.

What Makes Jetpath Special?

How It Works

Jetpath uses smart conventions and naming-based routing. Instead of writing route definitions, you just:

1. Create .jet.ts or .jet.js files in your src directory

2. Export functions with intuitive names like METHOD_ + optional path segments

3. That it.

For example, create src/users.jet.ts with:

import { type JetRoute } from "jetpath";
// This becomes GET /users
export const GET_users: JetRoute = (ctx) => {
  ctx.send({ message: "runs on any runtime!" });
};

Itโ€™s that simple!

Here the best parts of Jetpath

Jetpath is perfect for:

Ready to Get Started?

Dive into Jetpath and experience the joy of modern backend development:

Join the Discord community,