Skip to main content
The Deno 2 Release Candidate is here
Learn more

Please Respond

Functional

import { body, html, pipe, toResponse } from "$URL/please-respond/mod.ts";
toResponse(pipe([html, body("<h1>🦕</h1>")]));
toResponse(pipe([html, body({ simple: "JSON support" })]));

OOP

import { body, html } from "$URL/please-respond/mod.ts";
import { response } from "$URL/please-respond/oop.ts";
response().applyAll([
    html,
    body("<h1>🦕</h1>"),
]).toResponse();