├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── README.md ├── SECURITY.md ├── dependabot.yml ├── docs │ ├── apps.md │ ├── assets.md │ ├── benchmarking.md │ ├── deployment.md │ ├── docker.md │ ├── frameworks.md │ ├── running.md │ ├── setup.md │ ├── testing.md │ ├── tests.md │ ├── transforming-results.md │ ├── troubleshooting.md │ ├── verifying.md │ └── website.md └── workflows │ ├── benchmark.yml │ ├── build.yml │ ├── docker.yml │ ├── lint.yml │ ├── mirror.yml │ ├── test.yml │ ├── transform-results.yml │ └── update-docs.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── apps ├── alpine │ ├── README.md │ ├── index.html │ ├── js │ │ ├── weather-app.js │ │ ├── weather-service.js │ │ └── weather-utils.js │ ├── package.json │ └── styles.css ├── angular │ ├── README.md │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.ts │ │ │ ├── components │ │ │ │ ├── current-weather.component.ts │ │ │ │ ├── error-state.component.ts │ │ │ │ ├── forecast-item.component.ts │ │ │ │ ├── forecast.component.ts │ │ │ │ ├── loading-state.component.ts │ │ │ │ ├── search-form.component.ts │ │ │ │ └── weather-content.component.ts │ │ │ ├── services │ │ │ │ ├── weather-state.service.ts │ │ │ │ └── weather.service.ts │ │ │ ├── types │ │ │ │ └── weather.types.ts │ │ │ └── utils │ │ │ │ └── weather.utils.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ └── main.ts │ ├── tsconfig.app.json │ └── tsconfig.json ├── jquery │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── components │ │ │ └── weather-ui.js │ │ ├── main.js │ │ └── services │ │ │ └── weather-service.js │ ├── styles.css │ └── vite.config.js ├── lit │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── forecast-item.js │ │ ├── shared-styles.js │ │ ├── weather-app.js │ │ ├── weather-display.js │ │ ├── weather-forecast.js │ │ ├── weather-search.js │ │ ├── weather-service.js │ │ └── weather-utils.js │ ├── styles.css │ └── vite.config.js ├── preact │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.jsx │ │ ├── components │ │ │ ├── CurrentWeather.jsx │ │ │ ├── ErrorState.jsx │ │ │ ├── Forecast.jsx │ │ │ ├── ForecastItem.jsx │ │ │ ├── LoadingState.jsx │ │ │ ├── SearchForm.jsx │ │ │ └── WeatherContent.jsx │ │ ├── hooks │ │ │ └── useWeatherData.js │ │ ├── main.jsx │ │ ├── services │ │ │ └── WeatherService.js │ │ └── utils │ │ │ └── WeatherUtils.js │ └── vite.config.js ├── qwik │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── components │ │ │ ├── CurrentWeather.tsx │ │ │ ├── ErrorState.tsx │ │ │ ├── Forecast.tsx │ │ │ ├── ForecastItem.tsx │ │ │ ├── LoadingState.tsx │ │ │ ├── SearchForm.tsx │ │ │ └── WeatherContent.tsx │ │ ├── entry.dev.tsx │ │ ├── entry.ssr.tsx │ │ ├── main.tsx │ │ ├── root.tsx │ │ ├── routes │ │ │ └── index.tsx │ │ ├── services │ │ │ └── WeatherService.ts │ │ ├── stores │ │ │ └── weatherStore.ts │ │ └── utils │ │ │ └── WeatherUtils.ts │ └── vite.config.js ├── react │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.jsx │ │ ├── components │ │ │ ├── CurrentWeather.jsx │ │ │ ├── ErrorBoundary.jsx │ │ │ ├── ErrorState.jsx │ │ │ ├── Forecast.jsx │ │ │ ├── ForecastItem.jsx │ │ │ ├── LoadingState.jsx │ │ │ ├── SearchForm.jsx │ │ │ └── WeatherContent.jsx │ │ ├── hooks │ │ │ └── useWeatherData.js │ │ ├── main.jsx │ │ ├── services │ │ │ └── WeatherService.js │ │ └── utils │ │ │ └── WeatherUtils.js │ └── vite.config.js ├── solid │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.jsx │ │ ├── components │ │ │ ├── CurrentWeather.jsx │ │ │ ├── ErrorState.jsx │ │ │ ├── Forecast.jsx │ │ │ ├── ForecastItem.jsx │ │ │ ├── LoadingState.jsx │ │ │ ├── SearchForm.jsx │ │ │ └── WeatherContent.jsx │ │ ├── index.jsx │ │ ├── services │ │ │ └── WeatherService.js │ │ ├── stores │ │ │ └── weatherStore.js │ │ └── utils │ │ │ └── WeatherUtils.js │ └── vite.config.js ├── svelte │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.html │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── CurrentWeather.svelte │ │ │ │ ├── ErrorState.svelte │ │ │ │ ├── Forecast.svelte │ │ │ │ ├── ForecastItem.svelte │ │ │ │ ├── LoadingState.svelte │ │ │ │ ├── SearchForm.svelte │ │ │ │ └── WeatherContent.svelte │ │ │ ├── services │ │ │ │ └── weather-service.js │ │ │ ├── stores │ │ │ │ └── weather-store.js │ │ │ └── utils │ │ │ │ └── weather-utils.js │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ └── vite.config.js ├── vanilla │ ├── README.md │ ├── index.html │ ├── js │ │ ├── weather-app.js │ │ ├── weather-service.js │ │ └── weather-utils.js │ ├── package-lock.json │ └── package.json ├── vanjs │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── main.js │ │ ├── weather-service.js │ │ └── weather-utils.js │ ├── styles.css │ └── vite.config.js └── vue │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── components │ │ ├── CurrentWeather.vue │ │ ├── ErrorState.vue │ │ ├── Forecast.vue │ │ ├── ForecastItem.vue │ │ ├── LoadingState.vue │ │ ├── SearchForm.vue │ │ └── WeatherContent.vue │ ├── main.js │ ├── services │ │ └── weatherService.js │ └── utils │ │ └── weatherUtils.js │ └── vite.config.js ├── assets ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── banner.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.png ├── logo.png ├── manifest.json ├── mocks │ └── weather-data.json ├── screenshot.png ├── security.txt └── styles │ ├── base.css │ ├── components.css │ ├── design-system.css │ └── variables.css ├── config.json ├── docker-compose.yml ├── eslint.config.mjs ├── frameworks.json ├── package.json ├── playwright.config.js ├── results ├── .gitkeep ├── framework-stats.json ├── summary.json └── summary.tsv ├── scripts ├── .python-version ├── README.txt ├── benchmark │ ├── base.py │ ├── build_time.py │ ├── bundle_size.py │ ├── chrome_launcher.py │ ├── dev_server.py │ ├── lighthouse.py │ ├── main.py │ ├── resource_monitor.py │ └── source_analysis.py ├── common.py ├── get_frameworks.py ├── main.py ├── pyproject.toml ├── requirements.txt ├── run │ ├── build.py │ ├── build_website.py │ ├── generator.py │ ├── serve.py │ └── set-base-hrefs.js ├── setup │ ├── generate_mocks.py │ ├── generate_scripts.py │ ├── install_deps.py │ ├── main.py │ └── sync_assets.py ├── transform │ ├── benchmark_results.py │ ├── benchmark_results_json.py │ ├── benchmark_results_tsv.py │ ├── build_app_readme.py │ ├── build_charts.py │ ├── fetch_framework_stats.py │ ├── insert_framework_stats.py │ └── insert_statuses.py ├── utils.js └── verify │ ├── check.py │ ├── config-schema.json │ ├── frameworks-schema.json │ ├── lint.py │ ├── main.py │ ├── test.py │ └── validate_schemas.py ├── tests ├── .env.example ├── config │ ├── playwright-alpine.config.js │ ├── playwright-angular.config.js │ ├── playwright-jquery.config.js │ ├── playwright-lit.config.js │ ├── playwright-preact.config.js │ ├── playwright-qwik.config.js │ ├── playwright-react.config.js │ ├── playwright-solid.config.js │ ├── playwright-svelte.config.js │ ├── playwright-vanilla.config.js │ ├── playwright-vanjs.config.js │ ├── playwright-vue.config.js │ └── playwright.config.base.js ├── e2e │ └── weather-app-advanced.test.js ├── test-helpers.js ├── unit │ ├── run-unit-tests.js │ ├── test-runner.js │ ├── weather-app.test.js │ └── weather-service.test.js └── weather-app.test.js └── website ├── static ├── chart-configs.json ├── chart-urls.json ├── charts │ ├── build_efficiency_scatter.json │ ├── build_time_donut.json │ ├── bundle_size_comparison.json │ ├── dev_server_performance.json │ ├── lighthouse_radial.json │ ├── load_timeline.json │ ├── maintainability_treemap.json │ ├── performance_quadrant.json │ ├── performance_radar.json │ ├── production_build_efficiency.json │ ├── project_size_pie.json │ ├── resource_consumption.json │ └── source_analysis.json ├── css │ ├── chart-stuff.css │ ├── error.css │ ├── framework-error.css │ ├── framework-table.css │ ├── framework.css │ ├── homepage.css │ └── main.css ├── framework-commentary.json ├── framework-stats.json ├── js │ ├── charts.js │ └── framework-table.js └── results-summary.json └── templates ├── 404.html ├── base.html ├── docs-page.html ├── docs-snippet.html ├── docs.html ├── framework-error.html ├── framework.html └── homepage.html /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: lissy93 2 | -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/docs/apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/apps.md -------------------------------------------------------------------------------- /.github/docs/assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/assets.md -------------------------------------------------------------------------------- /.github/docs/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/benchmarking.md -------------------------------------------------------------------------------- /.github/docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/deployment.md -------------------------------------------------------------------------------- /.github/docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/docker.md -------------------------------------------------------------------------------- /.github/docs/frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/frameworks.md -------------------------------------------------------------------------------- /.github/docs/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/running.md -------------------------------------------------------------------------------- /.github/docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/setup.md -------------------------------------------------------------------------------- /.github/docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/testing.md -------------------------------------------------------------------------------- /.github/docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/tests.md -------------------------------------------------------------------------------- /.github/docs/transforming-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/transforming-results.md -------------------------------------------------------------------------------- /.github/docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/troubleshooting.md -------------------------------------------------------------------------------- /.github/docs/verifying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/verifying.md -------------------------------------------------------------------------------- /.github/docs/website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/docs/website.md -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/workflows/mirror.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/transform-results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/workflows/transform-results.yml -------------------------------------------------------------------------------- /.github/workflows/update-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.github/workflows/update-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /apps/alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/alpine/README.md -------------------------------------------------------------------------------- /apps/alpine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/alpine/index.html -------------------------------------------------------------------------------- /apps/alpine/js/weather-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/alpine/js/weather-app.js -------------------------------------------------------------------------------- /apps/alpine/js/weather-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/alpine/js/weather-service.js -------------------------------------------------------------------------------- /apps/alpine/js/weather-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/alpine/js/weather-utils.js -------------------------------------------------------------------------------- /apps/alpine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/alpine/package.json -------------------------------------------------------------------------------- /apps/alpine/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/alpine/styles.css -------------------------------------------------------------------------------- /apps/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/README.md -------------------------------------------------------------------------------- /apps/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/angular.json -------------------------------------------------------------------------------- /apps/angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/package-lock.json -------------------------------------------------------------------------------- /apps/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/package.json -------------------------------------------------------------------------------- /apps/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/angular/src/app/components/current-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/components/current-weather.component.ts -------------------------------------------------------------------------------- /apps/angular/src/app/components/error-state.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/components/error-state.component.ts -------------------------------------------------------------------------------- /apps/angular/src/app/components/forecast-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/components/forecast-item.component.ts -------------------------------------------------------------------------------- /apps/angular/src/app/components/forecast.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/components/forecast.component.ts -------------------------------------------------------------------------------- /apps/angular/src/app/components/loading-state.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/components/loading-state.component.ts -------------------------------------------------------------------------------- /apps/angular/src/app/components/search-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/components/search-form.component.ts -------------------------------------------------------------------------------- /apps/angular/src/app/components/weather-content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/components/weather-content.component.ts -------------------------------------------------------------------------------- /apps/angular/src/app/services/weather-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/services/weather-state.service.ts -------------------------------------------------------------------------------- /apps/angular/src/app/services/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/services/weather.service.ts -------------------------------------------------------------------------------- /apps/angular/src/app/types/weather.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/types/weather.types.ts -------------------------------------------------------------------------------- /apps/angular/src/app/utils/weather.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/app/utils/weather.utils.ts -------------------------------------------------------------------------------- /apps/angular/src/favicon.ico: -------------------------------------------------------------------------------- 1 | # Empty favicon file -------------------------------------------------------------------------------- /apps/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/index.html -------------------------------------------------------------------------------- /apps/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/src/main.ts -------------------------------------------------------------------------------- /apps/angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/tsconfig.app.json -------------------------------------------------------------------------------- /apps/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/angular/tsconfig.json -------------------------------------------------------------------------------- /apps/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/README.md -------------------------------------------------------------------------------- /apps/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/index.html -------------------------------------------------------------------------------- /apps/jquery/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/package-lock.json -------------------------------------------------------------------------------- /apps/jquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/package.json -------------------------------------------------------------------------------- /apps/jquery/src/components/weather-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/src/components/weather-ui.js -------------------------------------------------------------------------------- /apps/jquery/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/src/main.js -------------------------------------------------------------------------------- /apps/jquery/src/services/weather-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/src/services/weather-service.js -------------------------------------------------------------------------------- /apps/jquery/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/styles.css -------------------------------------------------------------------------------- /apps/jquery/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/jquery/vite.config.js -------------------------------------------------------------------------------- /apps/lit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/README.md -------------------------------------------------------------------------------- /apps/lit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/index.html -------------------------------------------------------------------------------- /apps/lit/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/package-lock.json -------------------------------------------------------------------------------- /apps/lit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/package.json -------------------------------------------------------------------------------- /apps/lit/src/forecast-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/src/forecast-item.js -------------------------------------------------------------------------------- /apps/lit/src/shared-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/src/shared-styles.js -------------------------------------------------------------------------------- /apps/lit/src/weather-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/src/weather-app.js -------------------------------------------------------------------------------- /apps/lit/src/weather-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/src/weather-display.js -------------------------------------------------------------------------------- /apps/lit/src/weather-forecast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/src/weather-forecast.js -------------------------------------------------------------------------------- /apps/lit/src/weather-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/src/weather-search.js -------------------------------------------------------------------------------- /apps/lit/src/weather-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/src/weather-service.js -------------------------------------------------------------------------------- /apps/lit/src/weather-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/src/weather-utils.js -------------------------------------------------------------------------------- /apps/lit/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/styles.css -------------------------------------------------------------------------------- /apps/lit/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/lit/vite.config.js -------------------------------------------------------------------------------- /apps/preact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/README.md -------------------------------------------------------------------------------- /apps/preact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/index.html -------------------------------------------------------------------------------- /apps/preact/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/package-lock.json -------------------------------------------------------------------------------- /apps/preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/package.json -------------------------------------------------------------------------------- /apps/preact/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/App.jsx -------------------------------------------------------------------------------- /apps/preact/src/components/CurrentWeather.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/components/CurrentWeather.jsx -------------------------------------------------------------------------------- /apps/preact/src/components/ErrorState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/components/ErrorState.jsx -------------------------------------------------------------------------------- /apps/preact/src/components/Forecast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/components/Forecast.jsx -------------------------------------------------------------------------------- /apps/preact/src/components/ForecastItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/components/ForecastItem.jsx -------------------------------------------------------------------------------- /apps/preact/src/components/LoadingState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/components/LoadingState.jsx -------------------------------------------------------------------------------- /apps/preact/src/components/SearchForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/components/SearchForm.jsx -------------------------------------------------------------------------------- /apps/preact/src/components/WeatherContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/components/WeatherContent.jsx -------------------------------------------------------------------------------- /apps/preact/src/hooks/useWeatherData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/hooks/useWeatherData.js -------------------------------------------------------------------------------- /apps/preact/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/main.jsx -------------------------------------------------------------------------------- /apps/preact/src/services/WeatherService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/services/WeatherService.js -------------------------------------------------------------------------------- /apps/preact/src/utils/WeatherUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/src/utils/WeatherUtils.js -------------------------------------------------------------------------------- /apps/preact/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/preact/vite.config.js -------------------------------------------------------------------------------- /apps/qwik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/README.md -------------------------------------------------------------------------------- /apps/qwik/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/index.html -------------------------------------------------------------------------------- /apps/qwik/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/package-lock.json -------------------------------------------------------------------------------- /apps/qwik/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/package.json -------------------------------------------------------------------------------- /apps/qwik/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/App.tsx -------------------------------------------------------------------------------- /apps/qwik/src/components/CurrentWeather.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/components/CurrentWeather.tsx -------------------------------------------------------------------------------- /apps/qwik/src/components/ErrorState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/components/ErrorState.tsx -------------------------------------------------------------------------------- /apps/qwik/src/components/Forecast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/components/Forecast.tsx -------------------------------------------------------------------------------- /apps/qwik/src/components/ForecastItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/components/ForecastItem.tsx -------------------------------------------------------------------------------- /apps/qwik/src/components/LoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/components/LoadingState.tsx -------------------------------------------------------------------------------- /apps/qwik/src/components/SearchForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/components/SearchForm.tsx -------------------------------------------------------------------------------- /apps/qwik/src/components/WeatherContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/components/WeatherContent.tsx -------------------------------------------------------------------------------- /apps/qwik/src/entry.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/entry.dev.tsx -------------------------------------------------------------------------------- /apps/qwik/src/entry.ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/entry.ssr.tsx -------------------------------------------------------------------------------- /apps/qwik/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/main.tsx -------------------------------------------------------------------------------- /apps/qwik/src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/root.tsx -------------------------------------------------------------------------------- /apps/qwik/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/routes/index.tsx -------------------------------------------------------------------------------- /apps/qwik/src/services/WeatherService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/services/WeatherService.ts -------------------------------------------------------------------------------- /apps/qwik/src/stores/weatherStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/stores/weatherStore.ts -------------------------------------------------------------------------------- /apps/qwik/src/utils/WeatherUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/src/utils/WeatherUtils.ts -------------------------------------------------------------------------------- /apps/qwik/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/qwik/vite.config.js -------------------------------------------------------------------------------- /apps/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/README.md -------------------------------------------------------------------------------- /apps/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/index.html -------------------------------------------------------------------------------- /apps/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/package-lock.json -------------------------------------------------------------------------------- /apps/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/package.json -------------------------------------------------------------------------------- /apps/react/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/App.jsx -------------------------------------------------------------------------------- /apps/react/src/components/CurrentWeather.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/components/CurrentWeather.jsx -------------------------------------------------------------------------------- /apps/react/src/components/ErrorBoundary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/components/ErrorBoundary.jsx -------------------------------------------------------------------------------- /apps/react/src/components/ErrorState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/components/ErrorState.jsx -------------------------------------------------------------------------------- /apps/react/src/components/Forecast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/components/Forecast.jsx -------------------------------------------------------------------------------- /apps/react/src/components/ForecastItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/components/ForecastItem.jsx -------------------------------------------------------------------------------- /apps/react/src/components/LoadingState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/components/LoadingState.jsx -------------------------------------------------------------------------------- /apps/react/src/components/SearchForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/components/SearchForm.jsx -------------------------------------------------------------------------------- /apps/react/src/components/WeatherContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/components/WeatherContent.jsx -------------------------------------------------------------------------------- /apps/react/src/hooks/useWeatherData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/hooks/useWeatherData.js -------------------------------------------------------------------------------- /apps/react/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/main.jsx -------------------------------------------------------------------------------- /apps/react/src/services/WeatherService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/services/WeatherService.js -------------------------------------------------------------------------------- /apps/react/src/utils/WeatherUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/src/utils/WeatherUtils.js -------------------------------------------------------------------------------- /apps/react/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/react/vite.config.js -------------------------------------------------------------------------------- /apps/solid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/README.md -------------------------------------------------------------------------------- /apps/solid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/index.html -------------------------------------------------------------------------------- /apps/solid/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/package-lock.json -------------------------------------------------------------------------------- /apps/solid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/package.json -------------------------------------------------------------------------------- /apps/solid/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/App.jsx -------------------------------------------------------------------------------- /apps/solid/src/components/CurrentWeather.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/components/CurrentWeather.jsx -------------------------------------------------------------------------------- /apps/solid/src/components/ErrorState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/components/ErrorState.jsx -------------------------------------------------------------------------------- /apps/solid/src/components/Forecast.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/components/Forecast.jsx -------------------------------------------------------------------------------- /apps/solid/src/components/ForecastItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/components/ForecastItem.jsx -------------------------------------------------------------------------------- /apps/solid/src/components/LoadingState.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/components/LoadingState.jsx -------------------------------------------------------------------------------- /apps/solid/src/components/SearchForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/components/SearchForm.jsx -------------------------------------------------------------------------------- /apps/solid/src/components/WeatherContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/components/WeatherContent.jsx -------------------------------------------------------------------------------- /apps/solid/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/index.jsx -------------------------------------------------------------------------------- /apps/solid/src/services/WeatherService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/services/WeatherService.js -------------------------------------------------------------------------------- /apps/solid/src/stores/weatherStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/stores/weatherStore.js -------------------------------------------------------------------------------- /apps/solid/src/utils/WeatherUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/src/utils/WeatherUtils.js -------------------------------------------------------------------------------- /apps/solid/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/solid/vite.config.js -------------------------------------------------------------------------------- /apps/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/README.md -------------------------------------------------------------------------------- /apps/svelte/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/package-lock.json -------------------------------------------------------------------------------- /apps/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/package.json -------------------------------------------------------------------------------- /apps/svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/app.html -------------------------------------------------------------------------------- /apps/svelte/src/lib/components/CurrentWeather.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/components/CurrentWeather.svelte -------------------------------------------------------------------------------- /apps/svelte/src/lib/components/ErrorState.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/components/ErrorState.svelte -------------------------------------------------------------------------------- /apps/svelte/src/lib/components/Forecast.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/components/Forecast.svelte -------------------------------------------------------------------------------- /apps/svelte/src/lib/components/ForecastItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/components/ForecastItem.svelte -------------------------------------------------------------------------------- /apps/svelte/src/lib/components/LoadingState.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/components/LoadingState.svelte -------------------------------------------------------------------------------- /apps/svelte/src/lib/components/SearchForm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/components/SearchForm.svelte -------------------------------------------------------------------------------- /apps/svelte/src/lib/components/WeatherContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/components/WeatherContent.svelte -------------------------------------------------------------------------------- /apps/svelte/src/lib/services/weather-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/services/weather-service.js -------------------------------------------------------------------------------- /apps/svelte/src/lib/stores/weather-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/stores/weather-store.js -------------------------------------------------------------------------------- /apps/svelte/src/lib/utils/weather-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/lib/utils/weather-utils.js -------------------------------------------------------------------------------- /apps/svelte/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/routes/+layout.svelte -------------------------------------------------------------------------------- /apps/svelte/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/src/routes/+page.svelte -------------------------------------------------------------------------------- /apps/svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/static/favicon.png -------------------------------------------------------------------------------- /apps/svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/svelte.config.js -------------------------------------------------------------------------------- /apps/svelte/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/svelte/vite.config.js -------------------------------------------------------------------------------- /apps/vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanilla/README.md -------------------------------------------------------------------------------- /apps/vanilla/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanilla/index.html -------------------------------------------------------------------------------- /apps/vanilla/js/weather-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanilla/js/weather-app.js -------------------------------------------------------------------------------- /apps/vanilla/js/weather-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanilla/js/weather-service.js -------------------------------------------------------------------------------- /apps/vanilla/js/weather-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanilla/js/weather-utils.js -------------------------------------------------------------------------------- /apps/vanilla/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanilla/package-lock.json -------------------------------------------------------------------------------- /apps/vanilla/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanilla/package.json -------------------------------------------------------------------------------- /apps/vanjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/README.md -------------------------------------------------------------------------------- /apps/vanjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/index.html -------------------------------------------------------------------------------- /apps/vanjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/package-lock.json -------------------------------------------------------------------------------- /apps/vanjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/package.json -------------------------------------------------------------------------------- /apps/vanjs/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/src/main.js -------------------------------------------------------------------------------- /apps/vanjs/src/weather-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/src/weather-service.js -------------------------------------------------------------------------------- /apps/vanjs/src/weather-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/src/weather-utils.js -------------------------------------------------------------------------------- /apps/vanjs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/styles.css -------------------------------------------------------------------------------- /apps/vanjs/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vanjs/vite.config.js -------------------------------------------------------------------------------- /apps/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/README.md -------------------------------------------------------------------------------- /apps/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/index.html -------------------------------------------------------------------------------- /apps/vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/package-lock.json -------------------------------------------------------------------------------- /apps/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/package.json -------------------------------------------------------------------------------- /apps/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/App.vue -------------------------------------------------------------------------------- /apps/vue/src/components/CurrentWeather.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/components/CurrentWeather.vue -------------------------------------------------------------------------------- /apps/vue/src/components/ErrorState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/components/ErrorState.vue -------------------------------------------------------------------------------- /apps/vue/src/components/Forecast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/components/Forecast.vue -------------------------------------------------------------------------------- /apps/vue/src/components/ForecastItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/components/ForecastItem.vue -------------------------------------------------------------------------------- /apps/vue/src/components/LoadingState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/components/LoadingState.vue -------------------------------------------------------------------------------- /apps/vue/src/components/SearchForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/components/SearchForm.vue -------------------------------------------------------------------------------- /apps/vue/src/components/WeatherContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/components/WeatherContent.vue -------------------------------------------------------------------------------- /apps/vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/main.js -------------------------------------------------------------------------------- /apps/vue/src/services/weatherService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/services/weatherService.js -------------------------------------------------------------------------------- /apps/vue/src/utils/weatherUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/src/utils/weatherUtils.js -------------------------------------------------------------------------------- /apps/vue/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/apps/vue/vite.config.js -------------------------------------------------------------------------------- /assets/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/favicon-32x32.png -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/manifest.json -------------------------------------------------------------------------------- /assets/mocks/weather-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/mocks/weather-data.json -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /assets/security.txt: -------------------------------------------------------------------------------- 1 | Contact: mailto:security@as93.net 2 | -------------------------------------------------------------------------------- /assets/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/styles/base.css -------------------------------------------------------------------------------- /assets/styles/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/styles/components.css -------------------------------------------------------------------------------- /assets/styles/design-system.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/styles/design-system.css -------------------------------------------------------------------------------- /assets/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/assets/styles/variables.css -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/config.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /frameworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/frameworks.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/playwright.config.js -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/results/.gitkeep -------------------------------------------------------------------------------- /results/framework-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/results/framework-stats.json -------------------------------------------------------------------------------- /results/summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/results/summary.json -------------------------------------------------------------------------------- /results/summary.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/results/summary.tsv -------------------------------------------------------------------------------- /scripts/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/README.txt -------------------------------------------------------------------------------- /scripts/benchmark/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/base.py -------------------------------------------------------------------------------- /scripts/benchmark/build_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/build_time.py -------------------------------------------------------------------------------- /scripts/benchmark/bundle_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/bundle_size.py -------------------------------------------------------------------------------- /scripts/benchmark/chrome_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/chrome_launcher.py -------------------------------------------------------------------------------- /scripts/benchmark/dev_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/dev_server.py -------------------------------------------------------------------------------- /scripts/benchmark/lighthouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/lighthouse.py -------------------------------------------------------------------------------- /scripts/benchmark/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/main.py -------------------------------------------------------------------------------- /scripts/benchmark/resource_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/resource_monitor.py -------------------------------------------------------------------------------- /scripts/benchmark/source_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/benchmark/source_analysis.py -------------------------------------------------------------------------------- /scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/common.py -------------------------------------------------------------------------------- /scripts/get_frameworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/get_frameworks.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/main.py -------------------------------------------------------------------------------- /scripts/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/pyproject.toml -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /scripts/run/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/run/build.py -------------------------------------------------------------------------------- /scripts/run/build_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/run/build_website.py -------------------------------------------------------------------------------- /scripts/run/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/run/generator.py -------------------------------------------------------------------------------- /scripts/run/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/run/serve.py -------------------------------------------------------------------------------- /scripts/run/set-base-hrefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/run/set-base-hrefs.js -------------------------------------------------------------------------------- /scripts/setup/generate_mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/setup/generate_mocks.py -------------------------------------------------------------------------------- /scripts/setup/generate_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/setup/generate_scripts.py -------------------------------------------------------------------------------- /scripts/setup/install_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/setup/install_deps.py -------------------------------------------------------------------------------- /scripts/setup/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/setup/main.py -------------------------------------------------------------------------------- /scripts/setup/sync_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/setup/sync_assets.py -------------------------------------------------------------------------------- /scripts/transform/benchmark_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/transform/benchmark_results.py -------------------------------------------------------------------------------- /scripts/transform/benchmark_results_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/transform/benchmark_results_json.py -------------------------------------------------------------------------------- /scripts/transform/benchmark_results_tsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/transform/benchmark_results_tsv.py -------------------------------------------------------------------------------- /scripts/transform/build_app_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/transform/build_app_readme.py -------------------------------------------------------------------------------- /scripts/transform/build_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/transform/build_charts.py -------------------------------------------------------------------------------- /scripts/transform/fetch_framework_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/transform/fetch_framework_stats.py -------------------------------------------------------------------------------- /scripts/transform/insert_framework_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/transform/insert_framework_stats.py -------------------------------------------------------------------------------- /scripts/transform/insert_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/transform/insert_statuses.py -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/utils.js -------------------------------------------------------------------------------- /scripts/verify/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/verify/check.py -------------------------------------------------------------------------------- /scripts/verify/config-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/verify/config-schema.json -------------------------------------------------------------------------------- /scripts/verify/frameworks-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/verify/frameworks-schema.json -------------------------------------------------------------------------------- /scripts/verify/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/verify/lint.py -------------------------------------------------------------------------------- /scripts/verify/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/verify/main.py -------------------------------------------------------------------------------- /scripts/verify/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/verify/test.py -------------------------------------------------------------------------------- /scripts/verify/validate_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/scripts/verify/validate_schemas.py -------------------------------------------------------------------------------- /tests/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/.env.example -------------------------------------------------------------------------------- /tests/config/playwright-alpine.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-alpine.config.js -------------------------------------------------------------------------------- /tests/config/playwright-angular.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-angular.config.js -------------------------------------------------------------------------------- /tests/config/playwright-jquery.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-jquery.config.js -------------------------------------------------------------------------------- /tests/config/playwright-lit.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-lit.config.js -------------------------------------------------------------------------------- /tests/config/playwright-preact.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-preact.config.js -------------------------------------------------------------------------------- /tests/config/playwright-qwik.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-qwik.config.js -------------------------------------------------------------------------------- /tests/config/playwright-react.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-react.config.js -------------------------------------------------------------------------------- /tests/config/playwright-solid.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-solid.config.js -------------------------------------------------------------------------------- /tests/config/playwright-svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-svelte.config.js -------------------------------------------------------------------------------- /tests/config/playwright-vanilla.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-vanilla.config.js -------------------------------------------------------------------------------- /tests/config/playwright-vanjs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-vanjs.config.js -------------------------------------------------------------------------------- /tests/config/playwright-vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright-vue.config.js -------------------------------------------------------------------------------- /tests/config/playwright.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/config/playwright.config.base.js -------------------------------------------------------------------------------- /tests/e2e/weather-app-advanced.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/e2e/weather-app-advanced.test.js -------------------------------------------------------------------------------- /tests/test-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/test-helpers.js -------------------------------------------------------------------------------- /tests/unit/run-unit-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/unit/run-unit-tests.js -------------------------------------------------------------------------------- /tests/unit/test-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/unit/test-runner.js -------------------------------------------------------------------------------- /tests/unit/weather-app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/unit/weather-app.test.js -------------------------------------------------------------------------------- /tests/unit/weather-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/unit/weather-service.test.js -------------------------------------------------------------------------------- /tests/weather-app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/tests/weather-app.test.js -------------------------------------------------------------------------------- /website/static/chart-configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/chart-configs.json -------------------------------------------------------------------------------- /website/static/chart-urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/chart-urls.json -------------------------------------------------------------------------------- /website/static/charts/build_efficiency_scatter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/build_efficiency_scatter.json -------------------------------------------------------------------------------- /website/static/charts/build_time_donut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/build_time_donut.json -------------------------------------------------------------------------------- /website/static/charts/bundle_size_comparison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/bundle_size_comparison.json -------------------------------------------------------------------------------- /website/static/charts/dev_server_performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/dev_server_performance.json -------------------------------------------------------------------------------- /website/static/charts/lighthouse_radial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/lighthouse_radial.json -------------------------------------------------------------------------------- /website/static/charts/load_timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/load_timeline.json -------------------------------------------------------------------------------- /website/static/charts/maintainability_treemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/maintainability_treemap.json -------------------------------------------------------------------------------- /website/static/charts/performance_quadrant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/performance_quadrant.json -------------------------------------------------------------------------------- /website/static/charts/performance_radar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/performance_radar.json -------------------------------------------------------------------------------- /website/static/charts/production_build_efficiency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/production_build_efficiency.json -------------------------------------------------------------------------------- /website/static/charts/project_size_pie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/project_size_pie.json -------------------------------------------------------------------------------- /website/static/charts/resource_consumption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/resource_consumption.json -------------------------------------------------------------------------------- /website/static/charts/source_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/charts/source_analysis.json -------------------------------------------------------------------------------- /website/static/css/chart-stuff.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/css/chart-stuff.css -------------------------------------------------------------------------------- /website/static/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/css/error.css -------------------------------------------------------------------------------- /website/static/css/framework-error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/css/framework-error.css -------------------------------------------------------------------------------- /website/static/css/framework-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/css/framework-table.css -------------------------------------------------------------------------------- /website/static/css/framework.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/css/framework.css -------------------------------------------------------------------------------- /website/static/css/homepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/css/homepage.css -------------------------------------------------------------------------------- /website/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/css/main.css -------------------------------------------------------------------------------- /website/static/framework-commentary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/framework-commentary.json -------------------------------------------------------------------------------- /website/static/framework-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/framework-stats.json -------------------------------------------------------------------------------- /website/static/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/js/charts.js -------------------------------------------------------------------------------- /website/static/js/framework-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/js/framework-table.js -------------------------------------------------------------------------------- /website/static/results-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/static/results-summary.json -------------------------------------------------------------------------------- /website/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/templates/404.html -------------------------------------------------------------------------------- /website/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/templates/base.html -------------------------------------------------------------------------------- /website/templates/docs-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/templates/docs-page.html -------------------------------------------------------------------------------- /website/templates/docs-snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/templates/docs-snippet.html -------------------------------------------------------------------------------- /website/templates/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/templates/docs.html -------------------------------------------------------------------------------- /website/templates/framework-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/templates/framework-error.html -------------------------------------------------------------------------------- /website/templates/framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/templates/framework.html -------------------------------------------------------------------------------- /website/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lissy93/framework-benchmarks/HEAD/website/templates/homepage.html --------------------------------------------------------------------------------