Answer Overflow Logo
Change Theme
Search Answer Overflow
GitHub
Add Your Server
Login
Home
Popular
Topics
Gaming
Programming
gwapes
Explore posts from servers
DIA
discord.js - Imagine an app
CD
Cloudflare Developers
H
Hono
Posts
Comments
H
Hono
•
Created by Tiebienotjuh on 11/8/2024 in
#help
Strange error
You may want to use something like <{ Bindings: …, Variables: { user: { id: number }}> Then c.set('user', { id: 1 }) Then whenever you want to get it c.get('user') Lmk if there’s anything wrong, syntax may be wrong since I’m on phone
3 replies
H
Hono
•
Created by Greenman999 on 10/23/2024 in
#help
How to prevent Server Error if no req body?
try {
await somePromise()
} catch (e) {
//handle some error
}
try {
await somePromise()
} catch (e) {
//handle some error
}
5 replies
H
Hono
•
Created by Greenman999 on 10/23/2024 in
#help
How to prevent Server Error if no req body?
Use try catch and then return if it throws.
5 replies