hono icon indicating copy to clipboard operation
hono copied to clipboard

Document for `Env` variables

Open yusukebe opened this issue 3 years ago • 0 comments

Write a document on how to handle Environment variables for Cloudflare Workers. Like this:

app.post('/posts', async (c, next) => {
  const auth = basicAuth({ username: c.env.NAME, password: c.env.PASS })
  await auth(c, next)
})

yusukebe avatar May 02 '22 12:05 yusukebe