Skip to main content
Home

@fresh/core@2.2.0
Built and signed on GitHub Actions

Works with
This package works with Deno
This package works with Deno
JSR Score70%
Downloads741/wk
Published2 months ago (2.2.0)

Fresh

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.

Learn more about Fresh

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

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@fresh/core

Import symbol

import * as core from "@fresh/core";
or

Import directly with a jsr specifier

import * as core from "jsr:@fresh/core";