Created
February 16, 2026 07:54
-
-
Save fu-sen/fecf8b96816092e555220027203987a3 to your computer and use it in GitHub Desktop.
Output "410 Gone" with Hono
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Hono } from 'hono' | |
| const app = new Hono() | |
| app.all('*', (c) => { | |
| c.status(410) | |
| return c.text('410 Gone') | |
| }) | |
| export default app |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Val Town version
https://www.val.town/x/balloon/hono-410-gone