├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── public ├── _redirects ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── api │ └── index.ts ├── common │ ├── data.ts │ ├── formatter.ts │ ├── index.ts │ └── interfaces.ts ├── components │ ├── AppHeader.tsx │ ├── FrameworkSelector.tsx │ ├── HttpErrorsTooltip.tsx │ └── ScrollToTop.tsx ├── index.css ├── index.tsx ├── reportWebVitals.ts └── views │ ├── BenchmarkResult.tsx │ ├── CompareFramework.tsx │ └── Home.tsx ├── tsconfig.json ├── vercel.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/common/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/common/data.ts -------------------------------------------------------------------------------- /src/common/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/common/formatter.ts -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/common/interfaces.ts -------------------------------------------------------------------------------- /src/components/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/components/AppHeader.tsx -------------------------------------------------------------------------------- /src/components/FrameworkSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/components/FrameworkSelector.tsx -------------------------------------------------------------------------------- /src/components/HttpErrorsTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/components/HttpErrorsTooltip.tsx -------------------------------------------------------------------------------- /src/components/ScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/components/ScrollToTop.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/views/BenchmarkResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/views/BenchmarkResult.tsx -------------------------------------------------------------------------------- /src/views/CompareFramework.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/views/CompareFramework.tsx -------------------------------------------------------------------------------- /src/views/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/src/views/Home.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-benchmarker/website/HEAD/vite.config.ts --------------------------------------------------------------------------------