Skip to main content
Module

x/hono/middleware/basic-auth/index.ts>basicAuth

Ultrafast web framework for Cloudflare Workers, Deno, and Bun. Fast, but not only fast.
Extremely Popular
Go to Latest
variable basicAuth
import { basicAuth } from "https://deno.land/x/hono@v2.1.3/middleware/basic-auth/index.ts";

type

(options: { username: string; password: string; realm?: string; hashFunction?: Function; }, ...users: { username: string; password: string; }[]) => unknown