docs/latest/introduction/index.md
Fresh is a small, fast and extensible full stack web framework built on Web Standards. It's designed for building high-quality, performant, and personalized web applications.
import { App } from "fresh";
const app = new App()
.get("/", () => new Response("hello world"))
.get("/jsx", (ctx) => ctx.render(<h1>render JSX!</h1>));
app.listen();
Create a new Fresh app by running:
deno run -Ar jsr:@fresh/init
The core idea powering Fresh is to render server generated HTML pages and only ship JavaScript for areas in the page that need to be interactive. This is often referred to as the Island Architecture.
precompile transformFresh is ideal for sites and apps that are primarily server rendered, like a home page, an e-commerce shop or something like GitHub or Bluesky.
Fresh's small API surface and file-based conventions also make it a great fit for AI-assisted development. Agents can scaffold routes, add middleware, and build features with minimal context because the framework is simple and predictable.
That said, if you want to build a Single-Page-App (=SPA), then Fresh is not the right framework.
Fresh powers deno.com and Deno Deploy among many other projects at Deno. It's also used by deco.cx for e-commerce projects.
Fresh runs anywhere Deno runs. Deploy with a single click on Deno Deploy, or package your app in a Docker container for any cloud provider or self-hosted infrastructure.