-
TypeScript
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
I used CloudFlare for the domain, which made deploying to a subdomain easy.
-
Vite
-
Tailwind Convenient
-
React I considered Solid as well, but went with React for now.
-
pnpm Feels faster overall for adding libraries and building. Alternatives like npm and yarn are available, but I chose pnpm for the best experience.
-
biome
A toolchain for web projects, aimed to provide functionalities to maintain them. Biome offers formatter and linter, usable via CLI and LSP.
{ "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", "organizeImports": { "enabled": true }, "linter": { "enabled": true, "rules": { "recommended": true, "a11y": { "useKeyWithClickEvents": "off" } } - } + }, + "javascript": { + "formatter": { + "semicolons": "asNeeded" + } + } }