0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 02:27:49 +01:00
Web Framework built on Web Standards https://hono.dev/
Go to file
Yusuke Wada 3b339ecd99
Feature/performance (#7)
* Tuning

* Prototype base

* Dont use proxy

* Make it Fastest!
2021-12-28 01:04:54 +09:00
benchmark Feature/performance (#7) 2021-12-28 01:04:54 +09:00
example Pass the tests 2021-12-27 03:53:44 +09:00
src Feature/performance (#7) 2021-12-28 01:04:54 +09:00
.gitignore
.npmignore Add script for benchmark 2021-12-23 03:07:57 +09:00
LICENSE Create LICENSE (#1) 2021-12-15 05:06:31 +09:00
package.json Pass the tests 2021-12-27 12:56:10 +09:00
README.md Dont use default response filter 2021-12-23 04:24:14 +09:00
yarn.lock Remove not used modules 2021-12-20 06:59:29 +09:00

Hono

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

const app = Hono()

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

app.fire()

Feature

  • Fast - the router is implemented with Trie-Tree structure.
  • Tiny - use only standard API.
  • Portable - zero dependencies.
  • Flexible - you can make your own middlewares.
  • Optimized - for Cloudflare Workers and Fastly Compute@Edge.

Install

$ yarn add hono

or

$ npm install hono

Methods

  • app.HTTP_METHOD(path, callback)
  • app.all(path, callback)
  • app.route(path)
  • app.use(path, middleware)

Routing

Basic

app.HTTP_METHOD

// HTTP Methods
app.get('/', () => new Response('GET /'))
app.post('/', () => new Response('POST /'))

// Wildcard
app.get('/wild/*/card', () => {
  return new Response('GET /wild/*/card')
})

app.all

// Any HTTP methods
app.all('/hello', () => new Response('ALL Method /hello'))

Named Parameter

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

Regexp

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

Chained Route

app
  .route('/api/book')
    .get(() => {...})
    .post(() => {...})
    .put(() => {...})

Middleware

const logger = (c, next) => {
  console.log(`[${c.req.method}] ${c.req.url}`)
  next()
}

const addHeader = (c, next) => {
  next()
  c.res.headers.add('x-message', 'This is middleware!')
}

app = app.use('*', logger)
app = app.use('/message/*', addHeader)

app.get('/message/hello', () => 'Hello Middleware!')

Context

req

app.get('/hello', (c) => {
  const userAgent = c.req.headers('User-Agent')
  ...
})

res

app.use('/', (c, next) => {
  next()
  c.res.headers.append('X-Debug', 'Debug message')
})

Request

query

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

params

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

Author

Yusuke Wada https://github.com/yusukebe

License

MIT