serve(handler)
が
serve(options, handler)
になるのは好きじゃない
serve(handler)
が
serve(options, handler)
になるのは好きじゃない
serve(options, () => {
// めっちゃでかい関数
})
vs
serve(() => {
// めっちゃでかい関数
}, options)
上の方が綺麗
serve(options, () => {
// めっちゃでかい関数
})
vs
serve(() => {
// めっちゃでかい関数
}, options)
上の方が綺麗
標準ライブラリはやりすぎない方がいい気がする
標準ライブラリはやりすぎない方がいい気がする
- vs better-auth: You can fully customize how you create/delete/get users and even use db transactions. (Personal preference but) I don't like a library doing migrations + handling connections directly
- vs better-auth: You can fully customize how you create/delete/get users and even use db transactions. (Personal preference but) I don't like a library doing migrations + handling connections directly
The more interesting part is the backend, which I'm not going to share just yet
The more interesting part is the backend, which I'm not going to share just yet