Add Gea (geajs.com) framework to the benchmark suite - #26
Open
rlorenzo wants to merge 1 commit into
Open
Conversation
Implements the shared weather app in Gea, a compiler-first reactive UI framework, and wires it into the existing test/lint/build tooling. - apps/geajs: weather app using @geajs/core with a proxy-based Store, getter-derived computed values, and class/function JSX components compiled by @geajs/vite-plugin (Vite 8) - frameworks.json: register geajs with build, test, and meta config - tests/config: add playwright-geajs.config.js and base config entry - package.json: add dev/build/test/lint scripts for geajs - eslint.config.mjs: ignore JSX-only component references in apps/geajs - .github/docs/apps.md: add Gea (and the previously missing Lume.js) to the framework list and correct the count to 14 Behavior matches the reference implementations (react/vue/svelte/preact/ solid), including reading pressure from pressure_msl and single-item forecast expansion with scroll-into-view. The page uses the shared soft background like the majority of apps rather than painting the app container near-white. Full Playwright suite passes locally (22/22). Co-Authored-By: Claude <noreply@anthropic.com>
rlorenzo
force-pushed
the
claude/add-geajs-test-ch2sr4
branch
from
July 17, 2026 20:52
ba54727 to
4a9d348
Compare
github-actions Bot
pushed a commit
to nigrosimone/framework-benchmarks
that referenced
this pull request
Jul 24, 2026
github-actions Bot
pushed a commit
to sathvikc/framework-benchmarks
that referenced
this pull request
Jul 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds Gea (geajs.com), a compiler-first reactive UI framework, as a new implementation in the benchmark suite. It is a like-for-like port of the shared weather app, wired into the existing test, lint, build, and benchmark tooling.
Closes #25
What's included
New app (
apps/geajs/)WeatherStoreextending Gea'sStore. State lives in plain class fields made reactive through a deep Proxy; mutations are ordinary assignments.forecastDays,locationLabel, formatted temperature/humidity/wind/pressure, and so on).SearchForm,WeatherDisplay,CurrentWeather,Forecast,ForecastItem,ErrorState) plus a function component (LoadingState), compiled by@geajs/vite-plugin(Vite 8) into surgical DOM patches with no virtual DOM.Tooling registration
frameworks.json: newgeajsentry (build/test/lint config plus website metadata).tests/config/playwright-geajs.config.jsand an entry inplaywright.config.base.js.package.json:dev:geajs,build:geajs,test:geajs,lint:geajs.eslint.config.mjs: an override for JSX-only component references (the same pattern React and Solid use)..github/docs/apps.md: added Gea, corrected the framework count, and restored the previously missing Lume.js list entry.Known parity differences worth a look
The suite compares identical apps, so I kept geajs matching the majority of implementations rather than any single one. A few spots where the reference apps themselves disagree:
current.pressure_msllike react, svelte, and vanjs. The shared mock fixture only providessurface_pressure, so pressure renders as "NaN hPa" under?mock=truefor all of those apps, geajs included. This is kept intentionally for like-for-like parity; a real fix belongs in a cross-framework change to the mock data or the shared readers.Benchmarks (local run, for context)
Issue #25 asked how Gea would compare. From a fresh local run of
scripts/benchmarkacross all frameworks on one machine (numbers are internally comparable; official CI figures will differ):In short, it slots in with the lean compile-to-DOM frameworks (Solid, Preact) on size and speed.
Testing
npm run test:geajs: 22/22 Playwright tests pass (the full shared suite: 10 core plus 12 advanced and performance E2E), run repeatedly with no flakiness.npm run lint:geajs: clean.npm run build:geajs: production build succeeds.🤖 Generated with Claude Code