i'm building this minimalistic framework mostly for myself. it's really just a project template + a tiny library that adds file based routes to express and persistent task queues.
i wanted something that:
1. is a single long-running process to deploy and manage (thanks sqlite!)
2. has type-safe database queries and type-safe server rendered React-like `.tsx` components
3. addresses 80% of common full-stack concerns like emails, task queues and routing
4. doesn't have a frontend build process
curious to hear what you think!
> 4. doesn't have a frontend build process
Is it entirely server-side and then it's all htmx? Is there a way to also hook client-only TS/components for more complex/interactive stuff? Or is that out of scope entirely?