0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 10:51:01 +00:00
hono/deno_dist/middleware/basic-auth/README.md

48 lines
652 B
Markdown
Raw Normal View History

2022-07-02 06:09:45 +00:00
# Basic Auth Middleware
## Usage
```js
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`:
```js
import { SHA256 } from 'crypto-js'
app.use(
'/auth/*',
basicAuth({
username: 'hono',
password: 'acoolproject',
hashFunction: (d: string) => SHA256(d).toString(), // <---
})
)
```