Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
latest
denoland/freshFresh
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.
Usage
Generate a new Fresh project with @fresh/init:
deno run -Ar jsr:@fresh/init
Add middleware, routes, & endpoints as needed via the routes/ folder or
directly on the App instance.
import { App } from "fresh"; const app = new App() .get("/", () => new Response("hello world")) .get("/jsx", (ctx) => ctx.render(<h1>render JSX!</h1>)); app.listen();
For more information on getting started with Fresh, head on over to the documentation.
Built and signed on
GitHub Actions
Add Package
deno add jsr:@fresh/core
Import symbol
import * as core from "@fresh/core";
Import directly with a jsr specifier
import * as core from "jsr:@fresh/core";