github honojs/hono v1.6.1

latest releases: v4.4.10, v4.5.0-rc.2, v4.4.9...
24 months ago

Summary

Added serve-static middleware for Deno.

import { serve } from 'https://deno.land/std@0.146.0/http/server.ts'
import { Hono, serveStatic } from 'https://deno.land/x/hono/mod.ts'

const app = new Hono()
app.get('/favicon.ico', serveStatic({ path: './public/favicon.ico' }))

//...

serve(app.fire())

What's Changed

Full Changelog: v1.6.0...v1.6.1

Don't miss a new hono release

NewReleases is sending notifications on new releases.