npm hono 1.6.1
v1.6.1

latest releases: 4.6.2, 4.6.1, 4.6.0...
2 years 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.