0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-25 05:07:03 +01:00
hono/README.md
2021-12-20 12:03:40 +09:00

2.0 KiB

Hono

Hono [炎] - Tiny web framework for Cloudflare Workers and others.

const app = Hono()

app.get('/', () => 'Hono!!')

app.fire()

Feature

  • Fast - the router is implemented with Trie-Tree structure.
  • Tiny - use only standard API.
  • Portable - zero dependencies.
  • Optimized for Cloudflare Workers.

Install

$ yarn add hono

or

$ npm install hono

Methods

  • app.HTTP_METHOD(path, ...callback)
  • app.all(path, ...callback)
  • app.route(path)
  • app.before(...callback)
  • app.after(...callback)

Routing

Basic

app.HTTP_METHOD

app.get('/', () => 'GET /')
app.post('/', () => 'POST /')
app.get('/wild/*/card', () => 'GET /wild/*/card')

app.all

app.all('/hello', () => 'ALL Method /hello')

Named Parameter

app.get('/user/:name', (req) => {
  const name = req.params('name')
  ...
})

Regexp

app.get('/post/:date{[0-9]+}/:title{[a-z]+}', (req) => {
  const date = req.params('date')
  const title = req.params('title')
  ...

Chained Route

app
  .route('/api/book')
  .get(() => 'GET /api/book')
  .post(() => 'POST /api/book')
  .put(() => 'PUT /api/book')

Middleware

const logger = (req, _) => {
  console.log(`${req.method}` : `${req.url}`)
}

app.before('/*', logger)

const addHeader = (_, res) => {
  res.headers.add('X-message', 'This is addHeader middleware!')
}
const customNotFound = (_, res) => {
  if (res.status == 404) {
    return new Response('404 Not Found!!', {
      status: 404
    })
  }
}

app.after('/*', addHeader, customNotFound)

Request

query

app.get('/search', (req) => {
  const query = req.query('q')
})

params

app.get('/entry/:id', (req) => {
  const id = req.params('id')
})

Author

Yusuke Wada https://github.com/yusukebe

License

MIT