├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── package.json ├── src ├── App │ ├── gh-button.scss │ ├── index.scss │ └── index.tsx ├── benchmark │ └── index.tsx ├── common │ └── reset.css ├── favicon.ico ├── index.html └── index.tsx └── tsconfig.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .parcel-cache 3 | node_modules 4 | .DS_Store -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.11.0 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/package.json -------------------------------------------------------------------------------- /src/App/gh-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/src/App/gh-button.scss -------------------------------------------------------------------------------- /src/App/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/src/App/index.scss -------------------------------------------------------------------------------- /src/App/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/src/App/index.tsx -------------------------------------------------------------------------------- /src/benchmark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/src/benchmark/index.tsx -------------------------------------------------------------------------------- /src/common/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/src/common/reset.css -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpl/what-code-is-faster/HEAD/tsconfig.json --------------------------------------------------------------------------------