Just started this to try out some web frameworks.
corepack enable
corepack pnpm i
During eslint configuration there were often problems with plugins not being well prepared for flat config. To know if eslint aborts with an error I ran eslint --print-config <file>
manually on some file to check if it breaks and afterwards I filtered out rules using a search string.
The commands must be run directly through npm
, the other package managers do not support the variables
feature.
Programs required:
- goqj
- bat
# See if eslint breaks on some file.
npm run eslint-check --file=./workspaces/apps/vite/react/src/components/TodoList.tsx
# Get all rules that start with "react" for a file.
npm run eslint-rules --file=./workspaces/apps/vite/react/src/components/TodoList.tsx --search=react
# > bunx eslint --print-config ./src/components/TodoList.tsx | gojq '.rules | with_entries(select(.key | startswith("react")))
The Framework selection was made checking trends via influencers like Theo and Primeagen + personal preferences + benchmark results.
-
Frontend: I'd better not comment this.
- js-framework-benchmark: https://krausest.github.io/js-framework-benchmark/current.html
-
Backend: The backend frameworks comparison has a filter set to only include languages I would like to use at this point in time, I don't want to learn
rust
right now, I know and likedart
,go
is easy to learn,kotlin
is superior tojava
and has the best performing libraries (rust
also) andtypescript
is what I know well already. Unfortunately, without searching further, there seem to be no gooddart
frameworks. The bestkotlin
,java
, andrust
frameworks leave everything behind. I can't believe how people can still use spring when looking at the benchmarks. Fortypescript
there is only one good choice:elysia
. The bestgo
frameworks seem to be slower thanelysia
but might still be a good choice (especially if SSG is a requirement, but this is just an assumption). On thejava
/kotlin
sidevertx-web
delivers most extreme performance. I still need to choose onego
andkotlin
framework out ofchi/herz/echo/gin
andvertex-web/http4k
later.- Micro frameworks with
rust
andjavascript
: https://www.techempower.com/benchmarks/#hw=ph&test=composite§ion=data-r22&l=wqkx6n-cn1&c=d - Micro frameworks without
rust
andjavascript
: https://www.techempower.com/benchmarks/#hw=ph&test=composite§ion=data-r22&l=xak45b-cn1&c=d
- Micro frameworks with
Checkmarks here only reference if "Stage 1" is done for those atm.
- Solid
- +SSR
- Vike
- React
- +SSR
- Next
- Remix
- Vue
- +SSR
- Nuxt
- Vike
- Angular
- +@angular/ssr +@angular/dev-kit
- Svelte
- - SSR
- Svelte Kit
- Vike
- Lit
- +SSR
- react + stream ssr (
renderToPipeableStream
) requires nodejs streams, so elysia & bun does not work - react + vike does not yet fully support server components
- Create a basic TODO List example for at least one framework
- Start with local state to learn the basics
- Create a global state / store solution as a better replacement
- Create a reusable CSS reset that I can use everwhere
- Create a package for all the CSS using latest CSS features
- Create a package to share the types of the datastructures the apps will use
No need to implement every framework from in order to work on Stage 2 and 3.
- Use
mockend
to work with a mock backend - Performance
- Add SSR using elysia (does not work)
- if possible with HTML streaming
- with lazy / partial hydration
- Image loading
- Add an image to the start page which will function as LCP and ensure it is prefetched
- Add an image outside of the initial viewport and ensure it is lazy loaded.
- Add SSR using elysia (does not work)
- TODO List UI features
- Add a text filter for todo items including label, input, button.
- Add a checkbox (incl. rendering of checked items)
- Performance: Try out lazy loading of components by adding a component which can display the full todo item text when clicking on an entry (enlarge the area, exchange, no modal).
- Routing & Syncing
- create start page with search input and search button, which redirects to todo page with search param set. make sure that the param is updated via the filter input on the todo page (there are 2 inputs)
- create a page which does some simulated computation (setTimeout) and ensure that navigation change will not be blocked by rendering
- Implement different CSS solutions
- vanilla-css-extract
- tailwind
- unocss
- HTMX Render via SSR and realize simple CRUD using the fastest backend frameworks. Use Couchbase or Scylla if possible, otherwise Postgres or MongoDB.
- ts: elyisa
- go: chi/herz/echo/gin
- kotlin: vertex-web/http4k
I did not check on template libraries for those frameworks yet.
- Add persistance to the TODO List
- Appwrite
- Supabase
- Custom
- ts: elyisa
- go: chi/herz/echo/gin
- kotlin: vertex-web/http4k
- Create a minimal design system for everything in Figma
- Refactor: Update whole CSS and Components according to the design system
- Work on great a11y support
- unit tests
- e2e tests
- integration tests
- build pipelines
- deployment
Benchmarks under network & cpu throttling & real usage emulation.