mirror of
https://github.com/honojs/hono.git
synced 2024-11-25 13:19:30 +01:00
.. | ||
index.ts | ||
README.md |
Basic Auth Middleware
Usage
import { Hono } from 'hono'
import { basicAuth } from 'hono/basic-auth'
const app = new Hono()
app.use(
'/auth/*',
basicAuth({
username: 'hono',
password: 'acoolproject',
})
)
app.get('/auth/page', (c) => {
return c.text('You are authorized')
})
app.fire()
For Fastly Compute@Edge, polyfill crypto
or use crypto-js
.
Install:
npm i crypto-js
Override hashFunction
:
import { SHA256 } from 'crypto-js'
app.use(
'/auth/*',
basicAuth({
username: 'hono',
password: 'acoolproject',
hashFunction: (d: string) => SHA256(d).toString(), // <---
})
)