pilcrow
pilcrowonpaper.com
pilcrow
@pilcrowonpaper.com
I like building stuff

https://pilcrowonpaper.com
People who don’t know anything about auth but have general programming experience
November 10, 2025 at 2:43 PM
Wait the latest is v7???
November 6, 2025 at 12:04 PM
(I also met @danabra.mov but we had like zero things in common so it was an awkward handshake lol)
October 25, 2025 at 4:28 PM
けどやっぱり

serve(handler)



serve(options, handler)

になるのは好きじゃない
October 19, 2025 at 9:34 AM
昨日終わった後気づいた

serve(options, () => {
// めっちゃでかい関数
})

vs

serve(() => {
// めっちゃでかい関数
}, options)

上の方が綺麗
October 19, 2025 at 9:33 AM
ん、フォーマッター???
October 14, 2025 at 3:44 PM
個人的にResponse以外使えるのはどうかなーって感じ

標準ライブラリはやりすぎない方がいい気がする
October 14, 2025 at 3:44 PM
I also think it's a nice bonus that it's self contained. It's super clear where the line is between your code and the library/package code
September 6, 2025 at 1:26 AM
- vs SaaS: This is obvious but your users are stored in your db + no predefined schema to follow
- 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
September 6, 2025 at 1:21 AM
Link: faroe.dev
September 5, 2025 at 1:02 PM
Right now, I have the backend portion mostly done as well as the API client. You still have to make the UI and deal with some client state so it'd be nice to have packages for js frameworks, but that's not something I want to deal with right now
August 21, 2025 at 2:10 PM
I was using SQLite here but it'll work with anything. You get full control of the user table and you add additional columns and create relationships with other tables
August 21, 2025 at 2:10 PM
But essentially for the client side you just have to call createSignup(), verifyEmailAddressVerificationCode(), etc

The more interesting part is the backend, which I'm not going to share just yet
August 21, 2025 at 2:10 PM
It'll be focused on email/password so it won't support social logins via oauth/oidc at least for the initial release. I do have plans to add 2fa and eventually enterprise sso but I want to get the basics right first
August 1, 2025 at 11:35 AM