├── .circleci └── config.yml ├── .dockerignore ├── .gitignore ├── Chrome_Results.ods ├── Dockerfile ├── LICENSE ├── README.md ├── checkObsolete.js ├── cleanup.js ├── configureStyles.js ├── copy.js ├── css ├── bootstrap │ ├── CHANGELOG.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── grunt │ │ ├── .jshintrc │ │ ├── bs-commonjs-generator.js │ │ ├── bs-glyphicons-data-generator.js │ │ ├── bs-lessdoc-parser.js │ │ ├── bs-raw-files-generator.js │ │ ├── configBridge.json │ │ └── sauce_browsers.yml │ ├── js │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js │ ├── less │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ └── package.json ├── currentStyle.css ├── github-markdown.css ├── main.css ├── useMinimalCss.css └── useOriginalBootstrap.css ├── favicon.ico ├── frameworks ├── keyed │ ├── 1more │ │ ├── app.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── rollup.config.js │ ├── alpine │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.js │ ├── angular-nozone │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── angular.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ └── tsconfig.json │ ├── angular │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── README.md │ │ ├── angular.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── angularjs │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── home.controller.js │ │ │ ├── home.template.html │ │ │ └── main.js │ │ └── webpack.config.js │ ├── apprun │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── jsx.d.ts │ │ │ ├── main.tsx │ │ │ └── store.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── attodom │ │ ├── .editorconfig │ │ ├── index.html │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── store.js │ │ │ └── view.js │ ├── aurelia │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── aurelia_project │ │ │ ├── aurelia.json │ │ │ ├── environments │ │ │ │ ├── dev.js │ │ │ │ ├── prod.js │ │ │ │ └── stage.js │ │ │ ├── generators │ │ │ │ ├── attribute.js │ │ │ │ ├── attribute.json │ │ │ │ ├── binding-behavior.js │ │ │ │ ├── binding-behavior.json │ │ │ │ ├── component.js │ │ │ │ ├── component.json │ │ │ │ ├── element.js │ │ │ │ ├── element.json │ │ │ │ ├── generator.js │ │ │ │ ├── generator.json │ │ │ │ ├── task.js │ │ │ │ ├── task.json │ │ │ │ ├── value-converter.js │ │ │ │ └── value-converter.json │ │ │ └── tasks │ │ │ │ ├── build.js │ │ │ │ ├── build.json │ │ │ │ ├── copy-files.js │ │ │ │ ├── lint.js │ │ │ │ ├── process-css.js │ │ │ │ ├── process-markup.js │ │ │ │ ├── run.js │ │ │ │ ├── run.json │ │ │ │ ├── transpile.js │ │ │ │ └── watch.js │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── jsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── app.html │ │ │ ├── app.js │ │ │ ├── aurelia-polyfills.js │ │ │ ├── main.js │ │ │ └── store.js │ ├── bdc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── app.js │ ├── binding.scala │ │ ├── .gitignore │ │ ├── build.sbt │ │ ├── js │ │ │ ├── build.sbt │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── scala │ │ │ │ └── com │ │ │ │ └── thoughtworks │ │ │ │ └── binding │ │ │ │ └── benchmark │ │ │ │ ├── Main.scala │ │ │ │ └── Store.scala │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── src │ │ │ └── main │ │ │ │ └── assets │ │ │ │ └── index.html │ │ └── target │ │ │ └── web │ │ │ └── stage │ │ │ ├── index.html │ │ │ ├── js-launcher.js │ │ │ └── js-opt.js │ ├── blazor-wasm │ │ ├── .gitignore │ │ ├── dotnet-install.cmd │ │ ├── dotnet-install.sh │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── App.razor │ │ │ ├── App.razor.cs │ │ │ ├── Data.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── _Imports.razor │ │ │ ├── blazor-wasm.csproj │ │ │ ├── global.json │ │ │ └── wwwroot │ │ │ └── index.html │ ├── bobril │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.ts │ │ │ └── store.ts │ │ └── tsconfig.json │ ├── callbag-jsx-list │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── main.tsx │ │ │ └── util.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── callbag-jsx │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── main.tsx │ │ │ └── util.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── choo │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── index.js │ │ │ ├── rowsView.js │ │ │ ├── store.js │ │ │ └── utils.js │ ├── crank │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.jsx │ ├── crui │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.ts │ │ │ ├── jumbotron.ts │ │ │ ├── main.ts │ │ │ ├── store.ts │ │ │ ├── table.ts │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── datum │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── Main.js │ │ └── webpack.config.js │ ├── dojo │ │ ├── .dojorc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.ts │ │ │ ├── Button.ts │ │ │ ├── Buttons.ts │ │ │ ├── Row.ts │ │ │ ├── RowContainer.ts │ │ │ ├── Store.ts │ │ │ ├── index.html │ │ │ ├── main.css │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── domdiff │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── index.js │ │ │ └── utils.js │ ├── dominator │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── bundled-dist │ │ │ ├── 1.js │ │ │ ├── accca9b65c226d0a493c.module.wasm │ │ │ └── index.js │ │ ├── index.html │ │ ├── js │ │ │ └── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── lib.rs │ │ └── webpack.config.js │ ├── domvm │ │ ├── build.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── main.es6.js │ │ │ └── store.es6.js │ ├── doohtml │ │ ├── index.html │ │ ├── js │ │ │ ├── Main.class.js │ │ │ └── doo.html.min.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── templates │ │ │ └── main.html │ ├── doz │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── dyo │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.js │ │ └── webpack.config.js │ ├── elm │ │ ├── .gitignore │ │ ├── elm.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── Main.elm │ ├── ember │ │ ├── .bowerrc │ │ ├── .editorconfig │ │ ├── .ember-cli │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc.js │ │ ├── .template-lintrc.js │ │ ├── .travis.yml │ │ ├── .watchmanconfig │ │ ├── HOW_TO_UPDATE.txt │ │ ├── README.md │ │ ├── app │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ ├── fast-each.hbs │ │ │ │ ├── fast-each.js │ │ │ │ ├── my-table.js │ │ │ │ └── table-row │ │ │ │ │ └── template.hbs │ │ │ ├── controllers │ │ │ │ └── .gitkeep │ │ │ ├── helpers │ │ │ │ ├── .gitkeep │ │ │ │ └── eq.js │ │ │ ├── index.html │ │ │ ├── router.js │ │ │ ├── routes │ │ │ │ └── .gitkeep │ │ │ ├── services │ │ │ │ └── state.js │ │ │ ├── styles │ │ │ │ └── app.css │ │ │ ├── templates │ │ │ │ ├── components │ │ │ │ │ ├── bs-button.hbs │ │ │ │ │ └── my-table.hbs │ │ │ │ └── index.hbs │ │ │ └── utils │ │ │ │ └── benchmark-helpers.js │ │ ├── config │ │ │ ├── ember-cli-update.json │ │ │ ├── environment.js │ │ │ ├── optional-features.json │ │ │ └── targets.js │ │ ├── ember-cli-build.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── crossdomain.xml │ │ │ └── robots.txt │ │ ├── testem.js │ │ ├── tests │ │ │ ├── helpers │ │ │ │ ├── destroy-app.js │ │ │ │ ├── module-for-acceptance.js │ │ │ │ ├── resolver.js │ │ │ │ └── start-app.js │ │ │ ├── index.html │ │ │ ├── integration │ │ │ │ ├── .gitkeep │ │ │ │ └── components │ │ │ │ │ └── table-row │ │ │ │ │ └── component-test.js │ │ │ ├── test-helper.js │ │ │ └── unit │ │ │ │ ├── .gitkeep │ │ │ │ └── services │ │ │ │ └── state-test.js │ │ └── vendor │ │ │ └── .gitkeep │ ├── endorphin │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── app-ui │ │ │ ├── app-ui.html │ │ │ └── app-ui.js │ │ │ └── app.js │ ├── etch │ │ ├── babel.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Main.jsx │ │ │ ├── Row.jsx │ │ │ ├── Store.es6.js │ │ │ └── main.es6.js │ │ └── webpack.config.js │ ├── fidan │ │ ├── app.tsx │ │ ├── data.ts │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── webpack.config.js │ ├── fntags │ │ ├── .gitignore │ │ ├── build.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── Main.js │ ├── fullweb-helpers │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ └── index.js │ │ └── tsconfig.json │ ├── fullweb-template │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ └── index.js │ │ └── tsconfig.json │ ├── ganic │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Benchmark.js │ │ │ ├── buildData.js │ │ │ ├── main.js │ │ │ └── useStore.js │ │ └── webpack.config.js │ ├── glimmer-2 │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── index.html │ │ ├── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.ts │ │ │ ├── BsButton.ts │ │ │ ├── MyTable.ts │ │ │ ├── TableRow.ts │ │ │ └── utils │ │ │ │ ├── benchmark-helpers.ts │ │ │ │ └── helper.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── glimmer │ │ ├── .editorconfig │ │ ├── .ember-cli │ │ ├── .gitignore │ │ ├── .template-lintrc.js │ │ ├── .watchmanconfig │ │ ├── README.md │ │ ├── config │ │ │ ├── environment.js │ │ │ ├── module-map.d.ts │ │ │ ├── resolver-configuration.d.ts │ │ │ └── targets.js │ │ ├── ember-cli-build.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── main.ts │ │ │ ├── ui │ │ │ │ ├── components │ │ │ │ │ ├── BsButton │ │ │ │ │ │ └── template.hbs │ │ │ │ │ ├── Glimmer │ │ │ │ │ │ ├── component-test.ts │ │ │ │ │ │ ├── component.ts │ │ │ │ │ │ └── template.hbs │ │ │ │ │ ├── PerformantEach │ │ │ │ │ │ ├── component.ts │ │ │ │ │ │ └── template.hbs │ │ │ │ │ └── Table │ │ │ │ │ │ └── template.hbs │ │ │ │ ├── index.html │ │ │ │ └── styles │ │ │ │ │ └── app.css │ │ │ └── utils │ │ │ │ ├── benchmark-helpers.ts │ │ │ │ └── test-helpers │ │ │ │ └── test-helper.ts │ │ ├── testem.json │ │ ├── tests │ │ │ └── index.html │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── helix │ │ ├── .clj-kondo │ │ │ └── config.edn │ │ ├── .gitignore │ │ ├── index-dev.html │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── shadow-cljs.edn │ │ └── src │ │ │ └── demo │ │ │ ├── main.cljs │ │ │ └── state.cljs │ ├── heresy │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── index.js │ │ │ └── ui │ │ │ ├── app.js │ │ │ ├── button.js │ │ │ └── row.js │ ├── hullo │ │ ├── .babelrc │ │ ├── .yo-rc.json │ │ ├── _webpack.config.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── webpack.config.js │ ├── hydro-js │ │ ├── app.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.tsx │ │ │ └── index.html │ │ ├── tsconfig.json │ │ └── utils │ │ │ └── moveFiles.js │ ├── hyperapp │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── index.js │ │ │ └── store.js │ ├── hyperhtml │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── index.js │ │ │ └── row.js │ ├── imba │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.imba │ │ └── webpack.config.js │ ├── inferno │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── readme.md │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── controller.jsx │ │ │ ├── main.es6.js │ │ │ └── store.es6.js │ ├── isotope │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── main.js │ │ │ ├── menu.js │ │ │ └── utils.js │ ├── ivi │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.js │ ├── jotai │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── main.tsx │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── knockout │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── Main.js │ ├── ko-jsx │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── Main.js │ │ │ └── template.jsx │ ├── lighterhtml │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── index.js │ │ │ ├── jumbotron.js │ │ │ └── table.js │ ├── lit-html │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── index.js │ ├── lit │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── main.ts │ │ │ └── store.ts │ │ └── tsconfig.json │ ├── ls-element │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.tsx │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── maquette │ │ ├── build.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── main.es6.js │ │ │ └── store.es6.js │ ├── marionette-backbone │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── Main.js │ │ │ └── row.tpl.js │ ├── marionette │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── Main.js │ │ │ ├── mn-morphdom-renderer.js │ │ │ └── rowtemplate.js │ ├── marko │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── client.js │ │ │ └── main │ │ │ ├── component.js │ │ │ ├── components │ │ │ └── row.marko │ │ │ └── index.marko │ ├── mikado │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── data.js │ │ │ ├── main.js │ │ │ └── template │ │ │ │ ├── app.html │ │ │ │ └── item.html │ │ └── task │ │ │ └── build.js │ ├── mimbl │ │ ├── build.bat │ │ ├── index.html │ │ ├── indexDev.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── Main.tsx │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── miso │ │ ├── .gitignore │ │ ├── README.md │ │ ├── cabal.config │ │ ├── default.nix │ │ ├── dist-bundle │ │ │ ├── all.min.js │ │ │ └── index.html │ │ ├── miso-benchmark-keyed.cabal │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── Main.hs │ ├── misojs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── delegate.js │ │ ├── diff.js │ │ ├── index.html │ │ ├── main.js │ │ ├── package-lock.json │ │ └── package.json │ ├── mithril │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── controller.jsx │ │ │ ├── main.es6.js │ │ │ └── store.es6.js │ │ └── webpack.config.js │ ├── mobx-jsx │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.jsx │ ├── neverland │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── index.js │ ├── oldskull │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Application.ts │ │ │ ├── BenchmarkController.ts │ │ │ ├── BenchmarkView.ts │ │ │ ├── ItemCollectionView.ts │ │ │ ├── ItemModel.ts │ │ │ ├── ItemView.ts │ │ │ ├── main.ts │ │ │ └── utils.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── petit-dom │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── index.js │ │ │ └── store.js │ ├── preact │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── preact.test.js │ │ ├── src │ │ │ ├── Main.jsx │ │ │ ├── Row.jsx │ │ │ └── Store.es6.js │ │ ├── test │ │ │ ├── preact.test.js │ │ │ └── setup.js │ │ └── webpack.config.js │ ├── ractive │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.ractive.html │ │ └── webpack.config.js │ ├── rax │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-easy-state │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Main.jsx │ │ │ ├── Row.jsx │ │ │ ├── appStore.js │ │ │ ├── index.jsx │ │ │ └── randomSentence.js │ │ └── webpack.config.js │ ├── react-focal │ │ ├── .prettierrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── react-hooks │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-mobX │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Main.jsx │ │ │ ├── Row.jsx │ │ │ └── Store.es6.js │ │ └── webpack.config.js │ ├── react-recoil │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-redux-hooks-immutable │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-redux-hooks │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-redux-rematch │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-redux │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-rxjs │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-tagged-state │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react-tracked │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── react │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── reagent │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── project.clj │ │ └── src │ │ │ └── demo │ │ │ ├── main.cljs │ │ │ └── utils.cljs │ ├── reaml-preact │ │ ├── .gitignore │ │ ├── .ocamlformat │ │ ├── bsconfig.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── Main.ml │ │ │ └── Main.mli │ ├── reaml-react │ │ ├── .gitignore │ │ ├── .ocamlformat │ │ ├── bsconfig.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── Main.ml │ │ │ └── Main.mli │ ├── reason-react │ │ ├── .gitignore │ │ ├── bsconfig.json │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── Button.re │ │ │ ├── Index.re │ │ │ ├── Jumbotron.re │ │ │ ├── Main.re │ │ │ ├── Row.re │ │ │ └── Util.re │ │ └── webpack.config.js │ ├── redom │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.dev.js │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── app.js │ │ │ ├── main.js │ │ │ └── store.js │ ├── reflex-dom │ │ ├── .gitignore │ │ ├── build.sh │ │ ├── bundled-dist │ │ │ ├── all.js │ │ │ ├── all.js.externs │ │ │ ├── index.html │ │ │ ├── lib.js │ │ │ ├── out.frefs.js │ │ │ ├── out.frefs.json │ │ │ ├── out.js │ │ │ ├── rts.js │ │ │ └── runmain.js │ │ ├── install.sh │ │ ├── package-lock.json │ │ └── package.json │ ├── resonatejs │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── main.js │ │ │ └── resonate.min.js │ │ └── webpack.config.js │ ├── riot │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.riot │ │ │ ├── main.js │ │ │ └── store.js │ │ └── webpack.config.js │ ├── s2 │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── bench.js │ │ │ └── main.min.js │ ├── san │ │ ├── .babelrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.js │ │ │ ├── main.es6.js │ │ │ └── store.es6.js │ │ └── webpack.config.js │ ├── scarlets-frame │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.js │ ├── sifrr │ │ ├── app.js │ │ ├── elements.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── rollup.config.js │ ├── sinuous │ │ ├── .eslintrc.yml │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.js │ ├── skruv │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ ├── index.js │ │ │ └── store.js │ ├── solid-state │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.jsx │ ├── solid │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.jsx │ ├── stdweb │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── bundled-dist │ │ │ ├── index.html │ │ │ ├── js-framework-benchmark-stdweb.js │ │ │ └── js-framework-benchmark-stdweb.wasm │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── main.rs │ ├── stencil │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── components.d.ts │ │ │ └── main.tsx │ │ ├── stencil.config.ts │ │ └── tsconfig.json │ ├── svelte │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── Main.svelte │ │ │ └── main.js │ ├── sycamore │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── bundled-dist │ │ │ ├── index.html │ │ │ ├── js-framework-benchmark-sycamore.js │ │ │ ├── js-framework-benchmark-sycamore_bg.wasm │ │ │ └── snippets │ │ │ │ └── sycamore-691cfdd254ccd52d │ │ │ │ └── inline0.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── lib.rs │ ├── uhtml │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ ├── index.js │ │ │ ├── jumbotron.js │ │ │ ├── table-delegate.js │ │ │ ├── table-tr.js │ │ │ └── table.js │ ├── uhydro │ │ ├── app.js │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app.tsx │ │ │ └── index.html │ │ ├── tsconfig.json │ │ └── utils │ │ │ └── moveFiles.js │ ├── valtio │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.jsx │ │ └── webpack.config.js │ ├── vanillajs-1 │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── Main.js │ ├── vanillajs-wc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── main.js │ ├── vanillajs │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── Main.js │ ├── vidom │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── controller.jsx │ │ │ ├── main.js │ │ │ └── store.js │ │ └── webpack.config.js │ ├── vue │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── App.vue │ │ │ ├── data.js │ │ │ └── main.js │ │ └── webpack.config.js │ ├── vuerx-jsx │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ └── src │ │ │ └── main.jsx │ ├── wasm-bindgen │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── bundled-dist │ │ │ ├── 1.js │ │ │ ├── 9514be0dfb95a4ff4996.module.wasm │ │ │ └── index.js │ │ ├── index.html │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── lib.rs │ │ └── webpack.config.js │ ├── whatsup │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── main.tsx │ │ ├── tsconfig.json │ │ └── webpack.config.js │ └── yew │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── bundled-dist │ │ ├── index.html │ │ ├── js-framework-benchmark-yew.js │ │ └── js-framework-benchmark-yew_bg.wasm │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ └── lib.rs └── non-keyed │ ├── apprun │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── jsx.d.ts │ │ ├── main.tsx │ │ └── store.ts │ ├── tsconfig.json │ └── webpack.config.js │ ├── aurelia │ ├── .babelrc │ ├── .gitignore │ ├── aurelia_project │ │ ├── aurelia.json │ │ ├── environments │ │ │ ├── dev.js │ │ │ ├── prod.js │ │ │ └── stage.js │ │ ├── generators │ │ │ ├── attribute.js │ │ │ ├── attribute.json │ │ │ ├── binding-behavior.js │ │ │ ├── binding-behavior.json │ │ │ ├── component.js │ │ │ ├── component.json │ │ │ ├── element.js │ │ │ ├── element.json │ │ │ ├── generator.js │ │ │ ├── generator.json │ │ │ ├── task.js │ │ │ ├── task.json │ │ │ ├── value-converter.js │ │ │ └── value-converter.json │ │ └── tasks │ │ │ ├── build.js │ │ │ ├── build.json │ │ │ ├── copy-files.js │ │ │ ├── lint.js │ │ │ ├── process-css.js │ │ │ ├── process-markup.js │ │ │ ├── run.js │ │ │ ├── run.json │ │ │ ├── transpile.js │ │ │ └── watch.js │ ├── favicon.ico │ ├── index.html │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── app.html │ │ ├── app.js │ │ ├── aurelia-polyfills.js │ │ ├── main.js │ │ └── store.js │ ├── bdc │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ └── app.js │ ├── callbag-jsx-list │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── main.tsx │ │ └── util.ts │ ├── tsconfig.json │ └── webpack.config.js │ ├── callbag-jsx │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── main.tsx │ │ └── util.ts │ ├── tsconfig.json │ └── webpack.config.js │ ├── cyclejs-dom │ ├── .babelrc │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── main.jsx │ └── webpack.config.js │ ├── delorean │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── bundled-dist │ │ ├── 1.js │ │ ├── 771be7d21128346d6628.module.wasm │ │ └── index.js │ ├── index.html │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.rs │ │ ├── handler.rs │ │ ├── lib.rs │ │ └── row.rs │ └── webpack.config.js │ ├── dojo │ ├── .dojorc │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.ts │ │ ├── Button.ts │ │ ├── Buttons.ts │ │ ├── Row.ts │ │ ├── Store.ts │ │ ├── index.html │ │ ├── main.css │ │ └── main.ts │ └── tsconfig.json │ ├── domdiff │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ ├── index.js │ │ └── utils.js │ ├── domvm │ ├── build.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── main.es6.js │ │ └── store.es6.js │ ├── doohtml │ ├── index.html │ ├── js │ │ ├── Main.class.js │ │ └── doo.html.min.js │ ├── package-lock.json │ ├── package.json │ └── templates │ │ └── main.html │ ├── doz │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── index.js │ ├── elm │ ├── .gitignore │ ├── elm.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── Main.elm │ ├── endorphin │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ ├── app-ui │ │ ├── app-ui.html │ │ └── app-ui.js │ │ └── app.js │ ├── etch │ ├── babel.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Main.jsx │ │ ├── Row.jsx │ │ ├── Store.es6.js │ │ └── main.es6.js │ └── webpack.config.js │ ├── halogen │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── packages.dhall │ ├── spago.dhall │ └── src │ │ ├── Main.js │ │ └── Main.purs │ ├── heresy │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ ├── index.js │ │ └── ui │ │ ├── app.js │ │ ├── button.js │ │ └── row.js │ ├── hullo │ ├── .babelrc │ ├── .yo-rc.json │ ├── _webpack.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js │ ├── hydro-js │ ├── app.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.tsx │ │ └── index.html │ ├── tsconfig.json │ └── utils │ │ └── moveFiles.js │ ├── imba │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── main.imba │ └── webpack.config.js │ ├── incr_dom │ ├── .gitignore │ ├── copy.sh │ ├── dune │ ├── dune-project │ ├── esy.json │ ├── esy.lock │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── index.json │ │ ├── opam │ │ │ ├── angstrom.0.15.0 │ │ │ │ └── opam │ │ │ ├── async_js.v0.13.0 │ │ │ │ └── opam │ │ │ ├── async_kernel.v0.13.0 │ │ │ │ └── opam │ │ │ ├── async_rpc_kernel.v0.13.0 │ │ │ │ └── opam │ │ │ ├── atd.2.2.1 │ │ │ │ └── opam │ │ │ ├── atdgen-runtime.2.2.1 │ │ │ │ └── opam │ │ │ ├── atdgen.2.2.1 │ │ │ │ └── opam │ │ │ ├── base-bytes.base │ │ │ │ └── opam │ │ │ ├── base-threads.base │ │ │ │ └── opam │ │ │ ├── base-unix.base │ │ │ │ └── opam │ │ │ ├── base.v0.13.2 │ │ │ │ └── opam │ │ │ ├── base_bigstring.v0.13.0 │ │ │ │ └── opam │ │ │ ├── base_quickcheck.v0.13.0 │ │ │ │ └── opam │ │ │ ├── bigarray-compat.1.0.0 │ │ │ │ └── opam │ │ │ ├── bigstringaf.0.7.0 │ │ │ │ └── opam │ │ │ ├── bin_prot.v0.13.0 │ │ │ │ └── opam │ │ │ ├── biniou.1.2.1 │ │ │ │ └── opam │ │ │ ├── cmdliner.1.0.4 │ │ │ │ └── opam │ │ │ ├── conf-m4.1 │ │ │ │ └── opam │ │ │ ├── conf-pkg-config.1.3 │ │ │ │ └── opam │ │ │ ├── core_kernel.v0.13.0 │ │ │ │ └── opam │ │ │ ├── cppo.1.6.6 │ │ │ │ └── opam │ │ │ ├── csexp.1.3.2 │ │ │ │ └── opam │ │ │ ├── dune-configurator.2.7.1 │ │ │ │ └── opam │ │ │ ├── dune.2.7.1 │ │ │ │ └── opam │ │ │ ├── easy-format.1.3.2 │ │ │ │ └── opam │ │ │ ├── fieldslib.v0.13.0 │ │ │ │ └── opam │ │ │ ├── incr_dom.v0.13.0 │ │ │ │ └── opam │ │ │ ├── incr_map.v0.13.0 │ │ │ │ └── opam │ │ │ ├── incr_select.v0.13.0 │ │ │ │ └── opam │ │ │ ├── incremental.v0.13.0 │ │ │ │ └── opam │ │ │ ├── jane-street-headers.v0.13.0 │ │ │ │ └── opam │ │ │ ├── js_of_ocaml-compiler.3.7.1 │ │ │ │ └── opam │ │ │ ├── js_of_ocaml-ppx.3.7.1 │ │ │ │ └── opam │ │ │ ├── js_of_ocaml.3.7.1 │ │ │ │ └── opam │ │ │ ├── jst-config.v0.13.0 │ │ │ │ └── opam │ │ │ ├── menhir.20201201 │ │ │ │ └── opam │ │ │ ├── menhirLib.20201201 │ │ │ │ └── opam │ │ │ ├── menhirSdk.20201201 │ │ │ │ └── opam │ │ │ ├── merlin-extend.0.6 │ │ │ │ └── opam │ │ │ ├── merlin.3.3.3 │ │ │ │ └── opam │ │ │ ├── num.1.4 │ │ │ │ └── opam │ │ │ ├── ocaml-compiler-libs.v0.12.3 │ │ │ │ └── opam │ │ │ ├── ocaml-migrate-parsetree.1.8.0 │ │ │ │ └── opam │ │ │ ├── ocaml-syntax-shims.1.0.0 │ │ │ │ └── opam │ │ │ ├── ocamlbuild.0.14.0 │ │ │ │ └── opam │ │ │ ├── ocamlfind.1.8.1 │ │ │ │ ├── files │ │ │ │ │ ├── ocaml-stub │ │ │ │ │ └── ocamlfind.install │ │ │ │ └── opam │ │ │ ├── octavius.1.2.2 │ │ │ │ └── opam │ │ │ ├── parsexp.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_assert.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_base.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_bench.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_bin_prot.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_cold.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_compare.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_custom_printf.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_derivers.1.2.1 │ │ │ │ └── opam │ │ │ ├── ppx_enumerate.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_expect.v0.13.1 │ │ │ │ └── opam │ │ │ ├── ppx_fail.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_fields_conv.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_hash.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_here.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_inline_test.v0.13.1 │ │ │ │ └── opam │ │ │ ├── ppx_jane.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_js_style.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_let.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_module_timer.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_optcomp.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_optional.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_pipebang.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_sexp_conv.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_sexp_message.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_sexp_value.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_stable.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_tools_versioned.5.4.0 │ │ │ │ └── opam │ │ │ ├── ppx_typerep_conv.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppx_variants_conv.v0.13.0 │ │ │ │ └── opam │ │ │ ├── ppxlib.0.13.0 │ │ │ │ └── opam │ │ │ ├── protocol_version_header.v0.13.0 │ │ │ │ └── opam │ │ │ ├── re.1.9.0 │ │ │ │ └── opam │ │ │ ├── result.1.5 │ │ │ │ └── opam │ │ │ ├── seq.base │ │ │ │ ├── files │ │ │ │ │ ├── META.seq │ │ │ │ │ └── seq.install │ │ │ │ └── opam │ │ │ ├── sexplib.v0.13.0 │ │ │ │ └── opam │ │ │ ├── sexplib0.v0.13.0 │ │ │ │ └── opam │ │ │ ├── splittable_random.v0.13.0 │ │ │ │ └── opam │ │ │ ├── stdio.v0.13.0 │ │ │ │ └── opam │ │ │ ├── stringext.1.6.0 │ │ │ │ └── opam │ │ │ ├── time_now.v0.13.0 │ │ │ │ └── opam │ │ │ ├── topkg.1.0.3 │ │ │ │ └── opam │ │ │ ├── typerep.v0.13.0 │ │ │ │ └── opam │ │ │ ├── tyxml.4.4.0 │ │ │ │ └── opam │ │ │ ├── uchar.0.0.2 │ │ │ │ └── opam │ │ │ ├── uri-sexp.4.0.0 │ │ │ │ └── opam │ │ │ ├── uri.4.0.0 │ │ │ │ └── opam │ │ │ ├── uutf.1.0.2 │ │ │ │ └── opam │ │ │ ├── variantslib.v0.13.0 │ │ │ │ └── opam │ │ │ ├── virtual_dom.v0.13.0 │ │ │ │ └── opam │ │ │ └── yojson.1.7.0 │ │ │ │ └── opam │ │ └── overrides │ │ │ ├── opam__s__conf_m4_opam__c__1_opam_override │ │ │ └── package.json │ │ │ ├── opam__s__conf_pkg_config_opam__c__1.3_opam_override │ │ │ └── package.json │ │ │ ├── opam__s__dune_opam__c__2.7.1_opam_override │ │ │ ├── files │ │ │ │ └── build.sh │ │ │ └── package.json │ │ │ ├── opam__s__num_opam__c__1.4_opam_override │ │ │ ├── files │ │ │ │ └── num-1.4.patch │ │ │ └── package.json │ │ │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ │ │ ├── files │ │ │ │ └── ocamlbuild-0.14.0.patch │ │ │ └── package.json │ │ │ ├── opam__s__ocamlfind_opam__c__1.8.1_opam_override │ │ │ ├── files │ │ │ │ └── findlib-1.8.1.patch │ │ │ └── package.json │ │ │ └── opam__s__time__now_opam__c__v0.13.0_opam_override │ │ │ ├── files │ │ │ └── time_now.v0.13.0.patch │ │ │ └── package.json │ ├── index.html │ ├── js-framework-benchmark-components.opam │ ├── js-framework-benchmark.opam │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── app │ │ ├── App.re │ │ ├── Entrypoint.re │ │ └── dune │ │ └── components │ │ ├── Button.re │ │ ├── Elements.re │ │ ├── Jumbotron.re │ │ ├── Row.re │ │ ├── Util.re │ │ └── dune │ ├── inferno │ ├── .babelrc │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── rollup.config.js │ └── src │ │ ├── controller.jsx │ │ ├── main.es6.js │ │ └── store.es6.js │ ├── lighterhtml │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ ├── index.js │ │ ├── jumbotron.js │ │ └── table.js │ ├── lit-html │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ └── index.js │ ├── lit │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── main.ts │ │ └── store.ts │ └── tsconfig.json │ ├── literaljs │ ├── .babelrc │ ├── .gitignore │ ├── index.html │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── store.js │ ├── mikado │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── data.js │ │ ├── main.js │ │ └── template │ │ │ ├── app.html │ │ │ └── item.html │ └── task │ │ └── build.js │ ├── mimbl │ ├── build.bat │ ├── index.html │ ├── indexDev.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── Main.tsx │ ├── tsconfig.json │ └── webpack.config.js │ ├── miso │ ├── .gitignore │ ├── README.md │ ├── cabal.config │ ├── default.nix │ ├── dist-bundle │ │ ├── all.min.js │ │ └── index.html │ ├── miso-benchmark-non-keyed.cabal │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── Main.hs │ ├── moon │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js │ ├── neow │ ├── index.html │ ├── main-app.js │ ├── package-lock.json │ └── package.json │ ├── neverland │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ └── index.js │ ├── polymer │ ├── .gitignore │ ├── bower.json │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── polymer.json │ ├── src │ │ ├── main-element.html │ │ └── shared-styles.html │ └── test │ │ └── polymer-temp_test.html │ ├── ractive │ ├── .babelrc │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── main.ractive.html │ └── webpack.config.js │ ├── react │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── main.jsx │ └── webpack.config.js │ ├── redom │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.dev.js │ ├── rollup.config.js │ └── src │ │ ├── app.js │ │ ├── main.js │ │ └── store.js │ ├── riot │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.riot │ │ ├── main.js │ │ └── store.js │ └── webpack.config.js │ ├── san │ ├── .babelrc │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.js │ │ ├── main.es6.js │ │ └── store.es6.js │ └── webpack.config.js │ ├── scarlets-frame │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ └── main.js │ ├── seed │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── bundled-dist │ │ ├── index.html │ │ ├── js-framework-benchmark-non-keyed-seed.js │ │ └── js-framework-benchmark-non-keyed-seed_bg.wasm │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── lib.rs │ ├── sifrr │ ├── app.js │ ├── elements.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── rollup.config.js │ ├── simi │ ├── .simi.toml │ ├── Cargo.toml │ ├── build.js │ ├── index.html │ ├── js_framework_benchmark_simi.js │ ├── js_framework_benchmark_simi_bg.js │ ├── js_framework_benchmark_simi_bg.wasm │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── lib.rs │ └── static │ │ └── index.html │ ├── slim-js │ ├── index.html │ ├── main-app.js │ ├── package-lock.json │ └── package.json │ ├── stdweb │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── bundled-dist │ │ ├── index.html │ │ ├── js-framework-benchmark-stdweb.js │ │ └── js-framework-benchmark-stdweb.wasm │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── main.rs │ ├── stem │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── css │ │ └── bootstrap.min.css │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── Main.jsx │ │ ├── Row.jsx │ │ ├── RowState.es6.js │ │ └── rollup.config.js │ ├── svelte │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ ├── Main.svelte │ │ └── main.js │ ├── uhtml │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ ├── index.js │ │ ├── jumbotron.js │ │ └── table-delegate.js │ ├── vanilla-dom-framework │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── main.js │ │ └── template.html │ └── webpack.config.js │ ├── vanillajs-1 │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── Main.js │ ├── vanillajs │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── Main.js │ └── vue │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── App.vue │ ├── data.js │ └── main.js │ └── webpack.config.js ├── images ├── firstRun.png ├── index.png ├── results.png ├── screenshot.png └── staticResults.png ├── index.html ├── install_rust.sh ├── lerna.json ├── lws.config.js ├── package.json ├── push_results.sh ├── rebuild-all.js ├── rebuild-single.js ├── results-ui ├── package.json └── src │ ├── bootstrap-reboot.css │ ├── build.js │ ├── style.css │ └── ui.js ├── webdriver-ts-results ├── .eslintignore ├── .eslintrc.json ├── package-lock.json ├── package.json ├── public │ └── index.html ├── src │ ├── App.css │ ├── App.tsx │ ├── Common.ts │ ├── ResultTable.tsx │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── reducer.ts │ ├── results.ts │ ├── selection │ │ ├── DropDown.tsx │ │ ├── DropDownContents.tsx │ │ ├── SelectBenchmarks.tsx │ │ ├── SelectFrameworks.tsx │ │ ├── SelectionBar.tsx │ │ ├── SelectionFilterIssues.tsx │ │ └── SelectionMode.tsx │ └── tables │ │ ├── BoxPlotTable.tsx │ │ ├── CompareRow.tsx │ │ ├── CpuResultsTable.tsx │ │ ├── GeomMeanRow.tsx │ │ ├── MemResultsTable.tsx │ │ ├── StartupResultsTable.tsx │ │ ├── ValueCell.tsx │ │ └── ValueResultRow.tsx ├── table.html ├── tsconfig.json ├── tsconfig.prod.json └── webpack.config.js └── webdriver-ts ├── README.txt ├── check.dot ├── chromePreferences.json ├── csv_export.js ├── index.dot ├── package-lock.json ├── package.json ├── results.json ├── src ├── benchmarkRunner.ts ├── benchmarks.ts ├── buildDockerFrameworks.ts ├── common.ts ├── createIndex.ts ├── createResultJS.ts ├── forkedBenchmarkRunner.ts ├── isKeyed.ts ├── lighthouseConfig.ts ├── rebuild.ts ├── updateFrameworks.ts ├── webdriverAccess.ts └── writeResults.ts ├── table.dot └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /Chrome_Results.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/Chrome_Results.ods -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /checkObsolete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/checkObsolete.js -------------------------------------------------------------------------------- /cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/cleanup.js -------------------------------------------------------------------------------- /configureStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/configureStyles.js -------------------------------------------------------------------------------- /copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/copy.js -------------------------------------------------------------------------------- /css/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /css/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /css/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/LICENSE -------------------------------------------------------------------------------- /css/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/README.md -------------------------------------------------------------------------------- /css/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /css/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /css/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /css/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /css/bootstrap/grunt/bs-lessdoc-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/grunt/bs-lessdoc-parser.js -------------------------------------------------------------------------------- /css/bootstrap/grunt/configBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/grunt/configBridge.json -------------------------------------------------------------------------------- /css/bootstrap/grunt/sauce_browsers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/grunt/sauce_browsers.yml -------------------------------------------------------------------------------- /css/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/affix.js -------------------------------------------------------------------------------- /css/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/alert.js -------------------------------------------------------------------------------- /css/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/button.js -------------------------------------------------------------------------------- /css/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /css/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /css/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /css/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/modal.js -------------------------------------------------------------------------------- /css/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/popover.js -------------------------------------------------------------------------------- /css/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /css/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/tab.js -------------------------------------------------------------------------------- /css/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /css/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/js/transition.js -------------------------------------------------------------------------------- /css/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /css/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/badges.less -------------------------------------------------------------------------------- /css/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /css/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /css/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /css/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /css/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /css/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/close.less -------------------------------------------------------------------------------- /css/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/code.less -------------------------------------------------------------------------------- /css/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /css/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/forms.less -------------------------------------------------------------------------------- /css/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /css/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/grid.less -------------------------------------------------------------------------------- /css/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /css/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /css/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/labels.less -------------------------------------------------------------------------------- /css/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /css/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/media.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/buttons.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/clearfix.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/gradients.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/hide-text.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/opacity.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/tab-focus.less -------------------------------------------------------------------------------- /css/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/mixins/table-row.less -------------------------------------------------------------------------------- /css/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/modals.less -------------------------------------------------------------------------------- /css/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /css/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/navs.less -------------------------------------------------------------------------------- /css/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /css/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/pager.less -------------------------------------------------------------------------------- /css/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /css/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/panels.less -------------------------------------------------------------------------------- /css/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /css/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/print.less -------------------------------------------------------------------------------- /css/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /css/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/responsive-embed.less -------------------------------------------------------------------------------- /css/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /css/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/tables.less -------------------------------------------------------------------------------- /css/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/theme.less -------------------------------------------------------------------------------- /css/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /css/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /css/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/type.less -------------------------------------------------------------------------------- /css/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /css/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/variables.less -------------------------------------------------------------------------------- /css/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/less/wells.less -------------------------------------------------------------------------------- /css/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/bootstrap/package.json -------------------------------------------------------------------------------- /css/currentStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/currentStyle.css -------------------------------------------------------------------------------- /css/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/github-markdown.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/main.css -------------------------------------------------------------------------------- /css/useMinimalCss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/useMinimalCss.css -------------------------------------------------------------------------------- /css/useOriginalBootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/css/useOriginalBootstrap.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/favicon.ico -------------------------------------------------------------------------------- /frameworks/keyed/1more/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/1more/app.js -------------------------------------------------------------------------------- /frameworks/keyed/1more/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/1more/index.html -------------------------------------------------------------------------------- /frameworks/keyed/1more/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/1more/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/1more/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/1more/package.json -------------------------------------------------------------------------------- /frameworks/keyed/1more/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/1more/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/alpine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/alpine/index.html -------------------------------------------------------------------------------- /frameworks/keyed/alpine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/alpine/package.json -------------------------------------------------------------------------------- /frameworks/keyed/alpine/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/alpine/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/alpine/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/alpine/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/angular-nozone/.npmrc: -------------------------------------------------------------------------------- 1 | NG_CLI_ANALYTICS=false -------------------------------------------------------------------------------- /frameworks/keyed/angular-nozone/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/angular-nozone/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /frameworks/keyed/angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/.browserslistrc -------------------------------------------------------------------------------- /frameworks/keyed/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/angular/.npmrc: -------------------------------------------------------------------------------- 1 | NG_CLI_ANALYTICS=false -------------------------------------------------------------------------------- /frameworks/keyed/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/README.md -------------------------------------------------------------------------------- /frameworks/keyed/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/angular.json -------------------------------------------------------------------------------- /frameworks/keyed/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/package.json -------------------------------------------------------------------------------- /frameworks/keyed/angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /frameworks/keyed/angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/src/favicon.ico -------------------------------------------------------------------------------- /frameworks/keyed/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/src/index.html -------------------------------------------------------------------------------- /frameworks/keyed/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/src/main.ts -------------------------------------------------------------------------------- /frameworks/keyed/angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/src/styles.css -------------------------------------------------------------------------------- /frameworks/keyed/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angular/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/angularjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angularjs/index.html -------------------------------------------------------------------------------- /frameworks/keyed/angularjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angularjs/package.json -------------------------------------------------------------------------------- /frameworks/keyed/angularjs/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/angularjs/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/apprun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/apprun/index.html -------------------------------------------------------------------------------- /frameworks/keyed/apprun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/apprun/package.json -------------------------------------------------------------------------------- /frameworks/keyed/apprun/src/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/apprun/src/jsx.d.ts -------------------------------------------------------------------------------- /frameworks/keyed/apprun/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/apprun/src/main.tsx -------------------------------------------------------------------------------- /frameworks/keyed/apprun/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/apprun/src/store.ts -------------------------------------------------------------------------------- /frameworks/keyed/apprun/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/apprun/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/attodom/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/attodom/.editorconfig -------------------------------------------------------------------------------- /frameworks/keyed/attodom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/attodom/index.html -------------------------------------------------------------------------------- /frameworks/keyed/attodom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/attodom/index.js -------------------------------------------------------------------------------- /frameworks/keyed/attodom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/attodom/package.json -------------------------------------------------------------------------------- /frameworks/keyed/attodom/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/attodom/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/attodom/src/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/attodom/src/view.js -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/.gitignore: -------------------------------------------------------------------------------- 1 | scripts 2 | src/environment.js -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/aurelia_project/environments/dev.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: true 3 | }; 4 | -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/aurelia_project/environments/prod.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: false 3 | }; 4 | -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/aurelia_project/environments/stage.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: true 3 | }; 4 | -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/favicon.ico -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/index.html -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/jsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/package.json -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/src/app.html -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/src/app.js -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/aurelia/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/aurelia/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/bdc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bdc/index.html -------------------------------------------------------------------------------- /frameworks/keyed/bdc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bdc/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/bdc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bdc/package.json -------------------------------------------------------------------------------- /frameworks/keyed/bdc/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bdc/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/bdc/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bdc/src/app.js -------------------------------------------------------------------------------- /frameworks/keyed/binding.scala/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/binding.scala/build.sbt -------------------------------------------------------------------------------- /frameworks/keyed/binding.scala/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.13 2 | -------------------------------------------------------------------------------- /frameworks/keyed/blazor-wasm/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | dotnet/ 3 | obj/ 4 | bin/ 5 | .vs/ -------------------------------------------------------------------------------- /frameworks/keyed/blazor-wasm/src/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/blazor-wasm/src/Data.cs -------------------------------------------------------------------------------- /frameworks/keyed/bobril/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bobril/index.html -------------------------------------------------------------------------------- /frameworks/keyed/bobril/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bobril/package.json -------------------------------------------------------------------------------- /frameworks/keyed/bobril/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bobril/src/app.ts -------------------------------------------------------------------------------- /frameworks/keyed/bobril/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bobril/src/store.ts -------------------------------------------------------------------------------- /frameworks/keyed/bobril/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/bobril/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/callbag-jsx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/callbag-jsx/index.html -------------------------------------------------------------------------------- /frameworks/keyed/callbag-jsx/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/callbag-jsx/src/util.ts -------------------------------------------------------------------------------- /frameworks/keyed/choo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/choo/index.html -------------------------------------------------------------------------------- /frameworks/keyed/choo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/choo/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/choo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/choo/package.json -------------------------------------------------------------------------------- /frameworks/keyed/choo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/choo/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/choo/src/rowsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/choo/src/rowsView.js -------------------------------------------------------------------------------- /frameworks/keyed/choo/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/choo/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/choo/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/choo/src/utils.js -------------------------------------------------------------------------------- /frameworks/keyed/crank/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crank/index.html -------------------------------------------------------------------------------- /frameworks/keyed/crank/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crank/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/crank/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crank/package.json -------------------------------------------------------------------------------- /frameworks/keyed/crank/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crank/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/crank/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crank/src/main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/crui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/index.html -------------------------------------------------------------------------------- /frameworks/keyed/crui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/crui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/package.json -------------------------------------------------------------------------------- /frameworks/keyed/crui/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/src/app.ts -------------------------------------------------------------------------------- /frameworks/keyed/crui/src/jumbotron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/src/jumbotron.ts -------------------------------------------------------------------------------- /frameworks/keyed/crui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/src/main.ts -------------------------------------------------------------------------------- /frameworks/keyed/crui/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/src/store.ts -------------------------------------------------------------------------------- /frameworks/keyed/crui/src/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/src/table.ts -------------------------------------------------------------------------------- /frameworks/keyed/crui/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/src/utils.ts -------------------------------------------------------------------------------- /frameworks/keyed/crui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/crui/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/crui/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/datum/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/datum/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/datum/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/datum/index.html -------------------------------------------------------------------------------- /frameworks/keyed/datum/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/datum/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/datum/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/datum/package.json -------------------------------------------------------------------------------- /frameworks/keyed/datum/src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/datum/src/Main.js -------------------------------------------------------------------------------- /frameworks/keyed/datum/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/datum/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/dojo/.dojorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/.dojorc -------------------------------------------------------------------------------- /frameworks/keyed/dojo/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | /output 3 | -------------------------------------------------------------------------------- /frameworks/keyed/dojo/README.md: -------------------------------------------------------------------------------- 1 | # dojo-v6.0.0-keyed 2 | -------------------------------------------------------------------------------- /frameworks/keyed/dojo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/dojo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/package.json -------------------------------------------------------------------------------- /frameworks/keyed/dojo/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/src/App.ts -------------------------------------------------------------------------------- /frameworks/keyed/dojo/src/Button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/src/Button.ts -------------------------------------------------------------------------------- /frameworks/keyed/dojo/src/Buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/src/Buttons.ts -------------------------------------------------------------------------------- /frameworks/keyed/dojo/src/Row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/src/Row.ts -------------------------------------------------------------------------------- /frameworks/keyed/dojo/src/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/src/Store.ts -------------------------------------------------------------------------------- /frameworks/keyed/dojo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/src/index.html -------------------------------------------------------------------------------- /frameworks/keyed/dojo/src/main.css: -------------------------------------------------------------------------------- 1 | /* Put your styles and imports here */ 2 | -------------------------------------------------------------------------------- /frameworks/keyed/dojo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/src/main.ts -------------------------------------------------------------------------------- /frameworks/keyed/dojo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dojo/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/domdiff/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domdiff/index.html -------------------------------------------------------------------------------- /frameworks/keyed/domdiff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domdiff/package.json -------------------------------------------------------------------------------- /frameworks/keyed/domdiff/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domdiff/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/domdiff/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domdiff/src/utils.js -------------------------------------------------------------------------------- /frameworks/keyed/dominator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dominator/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/dominator/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dominator/Cargo.toml -------------------------------------------------------------------------------- /frameworks/keyed/dominator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dominator/README.md -------------------------------------------------------------------------------- /frameworks/keyed/dominator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dominator/index.html -------------------------------------------------------------------------------- /frameworks/keyed/dominator/js/index.js: -------------------------------------------------------------------------------- 1 | import("../pkg/index.js").catch(console.error); 2 | -------------------------------------------------------------------------------- /frameworks/keyed/dominator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dominator/package.json -------------------------------------------------------------------------------- /frameworks/keyed/dominator/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dominator/src/lib.rs -------------------------------------------------------------------------------- /frameworks/keyed/domvm/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domvm/build.js -------------------------------------------------------------------------------- /frameworks/keyed/domvm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domvm/index.html -------------------------------------------------------------------------------- /frameworks/keyed/domvm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domvm/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/domvm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domvm/package.json -------------------------------------------------------------------------------- /frameworks/keyed/domvm/src/main.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domvm/src/main.es6.js -------------------------------------------------------------------------------- /frameworks/keyed/domvm/src/store.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/domvm/src/store.es6.js -------------------------------------------------------------------------------- /frameworks/keyed/doohtml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/doohtml/index.html -------------------------------------------------------------------------------- /frameworks/keyed/doohtml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/doohtml/package.json -------------------------------------------------------------------------------- /frameworks/keyed/doz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/doz/index.html -------------------------------------------------------------------------------- /frameworks/keyed/doz/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/doz/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/doz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/doz/package.json -------------------------------------------------------------------------------- /frameworks/keyed/doz/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/doz/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/dyo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dyo/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/dyo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dyo/index.html -------------------------------------------------------------------------------- /frameworks/keyed/dyo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dyo/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/dyo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dyo/package.json -------------------------------------------------------------------------------- /frameworks/keyed/dyo/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dyo/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/dyo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/dyo/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/elm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/elm/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/elm/elm.json -------------------------------------------------------------------------------- /frameworks/keyed/elm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/elm/index.html -------------------------------------------------------------------------------- /frameworks/keyed/elm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/elm/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/elm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/elm/package.json -------------------------------------------------------------------------------- /frameworks/keyed/elm/src/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/elm/src/Main.elm -------------------------------------------------------------------------------- /frameworks/keyed/ember/.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/.bowerrc -------------------------------------------------------------------------------- /frameworks/keyed/ember/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/.editorconfig -------------------------------------------------------------------------------- /frameworks/keyed/ember/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/.ember-cli -------------------------------------------------------------------------------- /frameworks/keyed/ember/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/.eslintignore -------------------------------------------------------------------------------- /frameworks/keyed/ember/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/.eslintrc.js -------------------------------------------------------------------------------- /frameworks/keyed/ember/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/ember/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/.prettierignore -------------------------------------------------------------------------------- /frameworks/keyed/ember/.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'octane', 5 | }; 6 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/.travis.yml -------------------------------------------------------------------------------- /frameworks/keyed/ember/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/HOW_TO_UPDATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/HOW_TO_UPDATE.txt -------------------------------------------------------------------------------- /frameworks/keyed/ember/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/README.md -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/app/app.js -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/helpers/eq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/app/helpers/eq.js -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/app/index.html -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/app/router.js -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/app/templates/index.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/config/targets.js -------------------------------------------------------------------------------- /frameworks/keyed/ember/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/ember/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/package.json -------------------------------------------------------------------------------- /frameworks/keyed/ember/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/testem.js -------------------------------------------------------------------------------- /frameworks/keyed/ember/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ember/tests/index.html -------------------------------------------------------------------------------- /frameworks/keyed/ember/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/ember/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/endorphin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/endorphin/index.html -------------------------------------------------------------------------------- /frameworks/keyed/endorphin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/endorphin/package.json -------------------------------------------------------------------------------- /frameworks/keyed/endorphin/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/endorphin/src/app.js -------------------------------------------------------------------------------- /frameworks/keyed/etch/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/babel.config.js -------------------------------------------------------------------------------- /frameworks/keyed/etch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/index.html -------------------------------------------------------------------------------- /frameworks/keyed/etch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/etch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/package.json -------------------------------------------------------------------------------- /frameworks/keyed/etch/src/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/src/Main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/etch/src/Row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/src/Row.jsx -------------------------------------------------------------------------------- /frameworks/keyed/etch/src/Store.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/src/Store.es6.js -------------------------------------------------------------------------------- /frameworks/keyed/etch/src/main.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/src/main.es6.js -------------------------------------------------------------------------------- /frameworks/keyed/etch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/etch/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/fidan/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fidan/app.tsx -------------------------------------------------------------------------------- /frameworks/keyed/fidan/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fidan/data.ts -------------------------------------------------------------------------------- /frameworks/keyed/fidan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fidan/index.html -------------------------------------------------------------------------------- /frameworks/keyed/fidan/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fidan/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/fidan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fidan/package.json -------------------------------------------------------------------------------- /frameworks/keyed/fidan/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fidan/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/fntags/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules -------------------------------------------------------------------------------- /frameworks/keyed/fntags/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fntags/build.js -------------------------------------------------------------------------------- /frameworks/keyed/fntags/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fntags/index.html -------------------------------------------------------------------------------- /frameworks/keyed/fntags/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fntags/package.json -------------------------------------------------------------------------------- /frameworks/keyed/fntags/src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/fntags/src/Main.js -------------------------------------------------------------------------------- /frameworks/keyed/ganic/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/ganic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/index.html -------------------------------------------------------------------------------- /frameworks/keyed/ganic/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/ganic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/package.json -------------------------------------------------------------------------------- /frameworks/keyed/ganic/src/Benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/src/Benchmark.js -------------------------------------------------------------------------------- /frameworks/keyed/ganic/src/buildData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/src/buildData.js -------------------------------------------------------------------------------- /frameworks/keyed/ganic/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/ganic/src/useStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/src/useStore.js -------------------------------------------------------------------------------- /frameworks/keyed/ganic/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ganic/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/.editorconfig -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/.eslintignore -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/.eslintrc.js -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/.prettierrc -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/index.html -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/index.ts -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/package.json -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/src/App.ts -------------------------------------------------------------------------------- /frameworks/keyed/glimmer-2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer-2/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/.editorconfig -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/.ember-cli -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tmp/* 3 | dist 4 | -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended' 5 | }; 6 | -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/README.md -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/package.json -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/src/index.ts -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/src/main.ts -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/src/ui/styles/app.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: #444; 3 | } 4 | -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/testem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/testem.json -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/glimmer/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/glimmer/tslint.json -------------------------------------------------------------------------------- /frameworks/keyed/helix/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | .shadow-cljs 3 | dist 4 | dev 5 | -------------------------------------------------------------------------------- /frameworks/keyed/helix/index-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/helix/index-dev.html -------------------------------------------------------------------------------- /frameworks/keyed/helix/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/helix/index.html -------------------------------------------------------------------------------- /frameworks/keyed/helix/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/helix/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/helix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/helix/package.json -------------------------------------------------------------------------------- /frameworks/keyed/helix/shadow-cljs.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/helix/shadow-cljs.edn -------------------------------------------------------------------------------- /frameworks/keyed/heresy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/heresy/index.html -------------------------------------------------------------------------------- /frameworks/keyed/heresy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/heresy/package.json -------------------------------------------------------------------------------- /frameworks/keyed/heresy/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/heresy/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/heresy/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/heresy/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/heresy/src/ui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/heresy/src/ui/app.js -------------------------------------------------------------------------------- /frameworks/keyed/heresy/src/ui/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/heresy/src/ui/button.js -------------------------------------------------------------------------------- /frameworks/keyed/heresy/src/ui/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/heresy/src/ui/row.js -------------------------------------------------------------------------------- /frameworks/keyed/hullo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hullo/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/hullo/.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hullo/.yo-rc.json -------------------------------------------------------------------------------- /frameworks/keyed/hullo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hullo/index.html -------------------------------------------------------------------------------- /frameworks/keyed/hullo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hullo/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/hullo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hullo/package.json -------------------------------------------------------------------------------- /frameworks/keyed/hullo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hullo/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/hullo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hullo/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/hydro-js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hydro-js/app.js -------------------------------------------------------------------------------- /frameworks/keyed/hydro-js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hydro-js/index.html -------------------------------------------------------------------------------- /frameworks/keyed/hydro-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hydro-js/package.json -------------------------------------------------------------------------------- /frameworks/keyed/hydro-js/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hydro-js/src/app.tsx -------------------------------------------------------------------------------- /frameworks/keyed/hydro-js/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hydro-js/src/index.html -------------------------------------------------------------------------------- /frameworks/keyed/hydro-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hydro-js/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/hyperapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hyperapp/index.html -------------------------------------------------------------------------------- /frameworks/keyed/hyperapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hyperapp/package.json -------------------------------------------------------------------------------- /frameworks/keyed/hyperapp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hyperapp/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/hyperapp/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hyperapp/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/hyperhtml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hyperhtml/index.html -------------------------------------------------------------------------------- /frameworks/keyed/hyperhtml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hyperhtml/package.json -------------------------------------------------------------------------------- /frameworks/keyed/hyperhtml/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hyperhtml/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/hyperhtml/src/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/hyperhtml/src/row.js -------------------------------------------------------------------------------- /frameworks/keyed/imba/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/imba/index.html -------------------------------------------------------------------------------- /frameworks/keyed/imba/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/imba/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/imba/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/imba/package.json -------------------------------------------------------------------------------- /frameworks/keyed/imba/src/main.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/imba/src/main.imba -------------------------------------------------------------------------------- /frameworks/keyed/imba/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/imba/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/inferno/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/inferno/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/inferno/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/inferno/index.html -------------------------------------------------------------------------------- /frameworks/keyed/inferno/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/inferno/package.json -------------------------------------------------------------------------------- /frameworks/keyed/inferno/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/inferno/readme.md -------------------------------------------------------------------------------- /frameworks/keyed/inferno/src/main.es6.js: -------------------------------------------------------------------------------- 1 | import './controller'; 2 | -------------------------------------------------------------------------------- /frameworks/keyed/isotope/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/isotope/index.html -------------------------------------------------------------------------------- /frameworks/keyed/isotope/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/isotope/package.json -------------------------------------------------------------------------------- /frameworks/keyed/isotope/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/isotope/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/isotope/src/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/isotope/src/menu.js -------------------------------------------------------------------------------- /frameworks/keyed/isotope/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/isotope/src/utils.js -------------------------------------------------------------------------------- /frameworks/keyed/ivi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ivi/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/ivi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ivi/index.html -------------------------------------------------------------------------------- /frameworks/keyed/ivi/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ivi/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/ivi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ivi/package.json -------------------------------------------------------------------------------- /frameworks/keyed/ivi/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ivi/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/ivi/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ivi/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/jotai/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/jotai/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/jotai/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/jotai/index.html -------------------------------------------------------------------------------- /frameworks/keyed/jotai/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/jotai/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/jotai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/jotai/package.json -------------------------------------------------------------------------------- /frameworks/keyed/jotai/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/jotai/src/main.tsx -------------------------------------------------------------------------------- /frameworks/keyed/jotai/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/jotai/src/utils.ts -------------------------------------------------------------------------------- /frameworks/keyed/jotai/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/jotai/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/jotai/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/jotai/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/knockout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/knockout/index.html -------------------------------------------------------------------------------- /frameworks/keyed/knockout/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/knockout/package.json -------------------------------------------------------------------------------- /frameworks/keyed/knockout/src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/knockout/src/Main.js -------------------------------------------------------------------------------- /frameworks/keyed/ko-jsx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ko-jsx/index.html -------------------------------------------------------------------------------- /frameworks/keyed/ko-jsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ko-jsx/package.json -------------------------------------------------------------------------------- /frameworks/keyed/ko-jsx/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ko-jsx/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/ko-jsx/src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ko-jsx/src/Main.js -------------------------------------------------------------------------------- /frameworks/keyed/ko-jsx/src/template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ko-jsx/src/template.jsx -------------------------------------------------------------------------------- /frameworks/keyed/lighterhtml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lighterhtml/index.html -------------------------------------------------------------------------------- /frameworks/keyed/lit-html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit-html/index.html -------------------------------------------------------------------------------- /frameworks/keyed/lit-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit-html/package.json -------------------------------------------------------------------------------- /frameworks/keyed/lit-html/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit-html/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/lit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit/index.html -------------------------------------------------------------------------------- /frameworks/keyed/lit/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/lit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit/package.json -------------------------------------------------------------------------------- /frameworks/keyed/lit/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/lit/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit/src/main.ts -------------------------------------------------------------------------------- /frameworks/keyed/lit/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit/src/store.ts -------------------------------------------------------------------------------- /frameworks/keyed/lit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/lit/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/ls-element/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ls-element/index.html -------------------------------------------------------------------------------- /frameworks/keyed/ls-element/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ls-element/package.json -------------------------------------------------------------------------------- /frameworks/keyed/ls-element/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ls-element/src/main.tsx -------------------------------------------------------------------------------- /frameworks/keyed/maquette/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/maquette/build.js -------------------------------------------------------------------------------- /frameworks/keyed/maquette/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/maquette/index.html -------------------------------------------------------------------------------- /frameworks/keyed/maquette/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/maquette/package.json -------------------------------------------------------------------------------- /frameworks/keyed/marionette-backbone/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/env"] 3 | } -------------------------------------------------------------------------------- /frameworks/keyed/marionette/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["@babel/env"] 3 | } -------------------------------------------------------------------------------- /frameworks/keyed/marionette/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/marionette/index.html -------------------------------------------------------------------------------- /frameworks/keyed/marionette/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/marionette/package.json -------------------------------------------------------------------------------- /frameworks/keyed/marionette/src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/marionette/src/Main.js -------------------------------------------------------------------------------- /frameworks/keyed/marko/.gitignore: -------------------------------------------------------------------------------- 1 | *.marko.js -------------------------------------------------------------------------------- /frameworks/keyed/marko/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/marko/index.html -------------------------------------------------------------------------------- /frameworks/keyed/marko/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/marko/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/marko/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/marko/package.json -------------------------------------------------------------------------------- /frameworks/keyed/marko/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/marko/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/marko/src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/marko/src/client.js -------------------------------------------------------------------------------- /frameworks/keyed/mikado/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mikado/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/mikado/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mikado/index.html -------------------------------------------------------------------------------- /frameworks/keyed/mikado/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mikado/package.json -------------------------------------------------------------------------------- /frameworks/keyed/mikado/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mikado/src/data.js -------------------------------------------------------------------------------- /frameworks/keyed/mikado/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mikado/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/mikado/task/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mikado/task/build.js -------------------------------------------------------------------------------- /frameworks/keyed/mimbl/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mimbl/build.bat -------------------------------------------------------------------------------- /frameworks/keyed/mimbl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mimbl/index.html -------------------------------------------------------------------------------- /frameworks/keyed/mimbl/indexDev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mimbl/indexDev.html -------------------------------------------------------------------------------- /frameworks/keyed/mimbl/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mimbl/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/mimbl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mimbl/package.json -------------------------------------------------------------------------------- /frameworks/keyed/mimbl/src/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mimbl/src/Main.tsx -------------------------------------------------------------------------------- /frameworks/keyed/mimbl/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mimbl/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/mimbl/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mimbl/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/miso/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/miso/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/miso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/miso/README.md -------------------------------------------------------------------------------- /frameworks/keyed/miso/cabal.config: -------------------------------------------------------------------------------- 1 | compiler: ghcjs 2 | -------------------------------------------------------------------------------- /frameworks/keyed/miso/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/miso/default.nix -------------------------------------------------------------------------------- /frameworks/keyed/miso/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/miso/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/miso/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/miso/package.json -------------------------------------------------------------------------------- /frameworks/keyed/miso/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/miso/src/Main.hs -------------------------------------------------------------------------------- /frameworks/keyed/misojs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/misojs/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/misojs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/misojs/README.md -------------------------------------------------------------------------------- /frameworks/keyed/misojs/delegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/misojs/delegate.js -------------------------------------------------------------------------------- /frameworks/keyed/misojs/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/misojs/diff.js -------------------------------------------------------------------------------- /frameworks/keyed/misojs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/misojs/index.html -------------------------------------------------------------------------------- /frameworks/keyed/misojs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/misojs/main.js -------------------------------------------------------------------------------- /frameworks/keyed/misojs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/misojs/package.json -------------------------------------------------------------------------------- /frameworks/keyed/mithril/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mithril/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/mithril/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mithril/index.html -------------------------------------------------------------------------------- /frameworks/keyed/mithril/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mithril/package.json -------------------------------------------------------------------------------- /frameworks/keyed/mithril/src/main.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mithril/src/main.es6.js -------------------------------------------------------------------------------- /frameworks/keyed/mobx-jsx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mobx-jsx/index.html -------------------------------------------------------------------------------- /frameworks/keyed/mobx-jsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mobx-jsx/package.json -------------------------------------------------------------------------------- /frameworks/keyed/mobx-jsx/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/mobx-jsx/src/main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/neverland/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/neverland/index.html -------------------------------------------------------------------------------- /frameworks/keyed/neverland/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/neverland/package.json -------------------------------------------------------------------------------- /frameworks/keyed/neverland/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/neverland/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/oldskull/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/oldskull/index.html -------------------------------------------------------------------------------- /frameworks/keyed/oldskull/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/oldskull/package.json -------------------------------------------------------------------------------- /frameworks/keyed/oldskull/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/oldskull/src/main.ts -------------------------------------------------------------------------------- /frameworks/keyed/oldskull/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/oldskull/src/utils.ts -------------------------------------------------------------------------------- /frameworks/keyed/oldskull/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/oldskull/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/petit-dom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/petit-dom/index.html -------------------------------------------------------------------------------- /frameworks/keyed/petit-dom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/petit-dom/package.json -------------------------------------------------------------------------------- /frameworks/keyed/petit-dom/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/petit-dom/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/petit-dom/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/petit-dom/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/preact/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/preact/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/preact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/preact/index.html -------------------------------------------------------------------------------- /frameworks/keyed/preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/preact/package.json -------------------------------------------------------------------------------- /frameworks/keyed/preact/preact.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/preact/preact.test.js -------------------------------------------------------------------------------- /frameworks/keyed/preact/src/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/preact/src/Main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/preact/src/Row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/preact/src/Row.jsx -------------------------------------------------------------------------------- /frameworks/keyed/preact/src/Store.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/preact/src/Store.es6.js -------------------------------------------------------------------------------- /frameworks/keyed/preact/test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/preact/test/setup.js -------------------------------------------------------------------------------- /frameworks/keyed/ractive/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ractive/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/ractive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ractive/index.html -------------------------------------------------------------------------------- /frameworks/keyed/ractive/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/ractive/package.json -------------------------------------------------------------------------------- /frameworks/keyed/rax/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/rax/index.html -------------------------------------------------------------------------------- /frameworks/keyed/rax/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/rax/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/rax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/rax/package.json -------------------------------------------------------------------------------- /frameworks/keyed/rax/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/rax/src/main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/rax/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/rax/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/react-focal/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-focal/.prettierrc -------------------------------------------------------------------------------- /frameworks/keyed/react-focal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-focal/index.html -------------------------------------------------------------------------------- /frameworks/keyed/react-hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-hooks/index.html -------------------------------------------------------------------------------- /frameworks/keyed/react-mobX/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-mobX/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/react-mobX/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-mobX/index.html -------------------------------------------------------------------------------- /frameworks/keyed/react-mobX/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-mobX/package.json -------------------------------------------------------------------------------- /frameworks/keyed/react-mobX/src/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-mobX/src/Main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/react-mobX/src/Row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-mobX/src/Row.jsx -------------------------------------------------------------------------------- /frameworks/keyed/react-recoil/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-recoil/index.html -------------------------------------------------------------------------------- /frameworks/keyed/react-redux/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-redux/index.html -------------------------------------------------------------------------------- /frameworks/keyed/react-rxjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-rxjs/index.html -------------------------------------------------------------------------------- /frameworks/keyed/react-rxjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-rxjs/package.json -------------------------------------------------------------------------------- /frameworks/keyed/react-rxjs/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react-rxjs/src/main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react/index.html -------------------------------------------------------------------------------- /frameworks/keyed/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react/package.json -------------------------------------------------------------------------------- /frameworks/keyed/react/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react/src/main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/react/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/reagent/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /frameworks/keyed/reagent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reagent/index.html -------------------------------------------------------------------------------- /frameworks/keyed/reagent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reagent/package.json -------------------------------------------------------------------------------- /frameworks/keyed/reagent/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reagent/project.clj -------------------------------------------------------------------------------- /frameworks/keyed/reaml-preact/.gitignore: -------------------------------------------------------------------------------- 1 | *.bs.js 2 | .merlin 3 | /dist 4 | /lib 5 | -------------------------------------------------------------------------------- /frameworks/keyed/reaml-preact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reaml-preact/index.html -------------------------------------------------------------------------------- /frameworks/keyed/reaml-preact/src/Main.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/reaml-react/.gitignore: -------------------------------------------------------------------------------- 1 | *.bs.js 2 | .merlin 3 | /dist 4 | /lib 5 | -------------------------------------------------------------------------------- /frameworks/keyed/reaml-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reaml-react/index.html -------------------------------------------------------------------------------- /frameworks/keyed/reaml-react/src/Main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reaml-react/src/Main.ml -------------------------------------------------------------------------------- /frameworks/keyed/reaml-react/src/Main.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/keyed/reason-react/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | **/*.bs.js 3 | .merlin 4 | .bsb.lock -------------------------------------------------------------------------------- /frameworks/keyed/reason-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reason-react/index.html -------------------------------------------------------------------------------- /frameworks/keyed/reason-react/src/Index.re: -------------------------------------------------------------------------------- 1 | 2 | ReactDOMRe.renderToElementWithId(
, "main"); 3 | -------------------------------------------------------------------------------- /frameworks/keyed/reason-react/src/Row.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reason-react/src/Row.re -------------------------------------------------------------------------------- /frameworks/keyed/redom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/redom/index.html -------------------------------------------------------------------------------- /frameworks/keyed/redom/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/redom/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/redom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/redom/package.json -------------------------------------------------------------------------------- /frameworks/keyed/redom/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/redom/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/redom/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/redom/src/app.js -------------------------------------------------------------------------------- /frameworks/keyed/redom/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/redom/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/redom/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/redom/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/reflex-dom/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | reflex-platform 3 | *.webapp 4 | *.stats 5 | 6 | -------------------------------------------------------------------------------- /frameworks/keyed/reflex-dom/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reflex-dom/build.sh -------------------------------------------------------------------------------- /frameworks/keyed/reflex-dom/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reflex-dom/install.sh -------------------------------------------------------------------------------- /frameworks/keyed/reflex-dom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/reflex-dom/package.json -------------------------------------------------------------------------------- /frameworks/keyed/resonatejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/resonatejs/index.html -------------------------------------------------------------------------------- /frameworks/keyed/resonatejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/resonatejs/package.json -------------------------------------------------------------------------------- /frameworks/keyed/resonatejs/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/resonatejs/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/riot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/riot/index.html -------------------------------------------------------------------------------- /frameworks/keyed/riot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/riot/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/riot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/riot/package.json -------------------------------------------------------------------------------- /frameworks/keyed/riot/src/app.riot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/riot/src/app.riot -------------------------------------------------------------------------------- /frameworks/keyed/riot/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/riot/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/riot/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/riot/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/riot/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/riot/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/s2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/s2/index.html -------------------------------------------------------------------------------- /frameworks/keyed/s2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/s2/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/s2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/s2/package.json -------------------------------------------------------------------------------- /frameworks/keyed/s2/src/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/s2/src/bench.js -------------------------------------------------------------------------------- /frameworks/keyed/s2/src/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/s2/src/main.min.js -------------------------------------------------------------------------------- /frameworks/keyed/san/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /frameworks/keyed/san/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/san/index.html -------------------------------------------------------------------------------- /frameworks/keyed/san/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/san/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/san/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/san/package.json -------------------------------------------------------------------------------- /frameworks/keyed/san/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/san/src/App.js -------------------------------------------------------------------------------- /frameworks/keyed/san/src/main.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/san/src/main.es6.js -------------------------------------------------------------------------------- /frameworks/keyed/san/src/store.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/san/src/store.es6.js -------------------------------------------------------------------------------- /frameworks/keyed/san/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/san/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/sifrr/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sifrr/app.js -------------------------------------------------------------------------------- /frameworks/keyed/sifrr/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sifrr/elements.js -------------------------------------------------------------------------------- /frameworks/keyed/sifrr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sifrr/index.html -------------------------------------------------------------------------------- /frameworks/keyed/sifrr/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sifrr/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/sifrr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sifrr/package.json -------------------------------------------------------------------------------- /frameworks/keyed/sifrr/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sifrr/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/sinuous/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sinuous/.eslintrc.yml -------------------------------------------------------------------------------- /frameworks/keyed/sinuous/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sinuous/index.html -------------------------------------------------------------------------------- /frameworks/keyed/sinuous/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sinuous/package.json -------------------------------------------------------------------------------- /frameworks/keyed/sinuous/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sinuous/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/skruv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/skruv/index.html -------------------------------------------------------------------------------- /frameworks/keyed/skruv/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/skruv/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/skruv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/skruv/package.json -------------------------------------------------------------------------------- /frameworks/keyed/skruv/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/skruv/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/skruv/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/skruv/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/solid-state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/solid-state/index.html -------------------------------------------------------------------------------- /frameworks/keyed/solid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/solid/index.html -------------------------------------------------------------------------------- /frameworks/keyed/solid/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/solid/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/solid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/solid/package.json -------------------------------------------------------------------------------- /frameworks/keyed/solid/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/solid/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/solid/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/solid/src/main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/stdweb/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /target 3 | -------------------------------------------------------------------------------- /frameworks/keyed/stdweb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stdweb/Cargo.toml -------------------------------------------------------------------------------- /frameworks/keyed/stdweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stdweb/README.md -------------------------------------------------------------------------------- /frameworks/keyed/stdweb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stdweb/index.html -------------------------------------------------------------------------------- /frameworks/keyed/stdweb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stdweb/package.json -------------------------------------------------------------------------------- /frameworks/keyed/stdweb/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stdweb/src/main.rs -------------------------------------------------------------------------------- /frameworks/keyed/stencil/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stencil/index.html -------------------------------------------------------------------------------- /frameworks/keyed/stencil/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stencil/package.json -------------------------------------------------------------------------------- /frameworks/keyed/stencil/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stencil/src/main.tsx -------------------------------------------------------------------------------- /frameworks/keyed/stencil/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/stencil/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/svelte/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/svelte/index.html -------------------------------------------------------------------------------- /frameworks/keyed/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/svelte/package.json -------------------------------------------------------------------------------- /frameworks/keyed/svelte/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/svelte/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/svelte/src/Main.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/svelte/src/Main.svelte -------------------------------------------------------------------------------- /frameworks/keyed/svelte/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/svelte/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/sycamore/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /target 3 | -------------------------------------------------------------------------------- /frameworks/keyed/sycamore/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sycamore/Cargo.toml -------------------------------------------------------------------------------- /frameworks/keyed/sycamore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sycamore/README.md -------------------------------------------------------------------------------- /frameworks/keyed/sycamore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sycamore/index.html -------------------------------------------------------------------------------- /frameworks/keyed/sycamore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sycamore/package.json -------------------------------------------------------------------------------- /frameworks/keyed/sycamore/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/sycamore/src/lib.rs -------------------------------------------------------------------------------- /frameworks/keyed/uhtml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhtml/index.html -------------------------------------------------------------------------------- /frameworks/keyed/uhtml/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhtml/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/uhtml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhtml/package.json -------------------------------------------------------------------------------- /frameworks/keyed/uhtml/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhtml/rollup.config.js -------------------------------------------------------------------------------- /frameworks/keyed/uhtml/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhtml/src/index.js -------------------------------------------------------------------------------- /frameworks/keyed/uhtml/src/jumbotron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhtml/src/jumbotron.js -------------------------------------------------------------------------------- /frameworks/keyed/uhtml/src/table-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhtml/src/table-tr.js -------------------------------------------------------------------------------- /frameworks/keyed/uhtml/src/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhtml/src/table.js -------------------------------------------------------------------------------- /frameworks/keyed/uhydro/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhydro/app.js -------------------------------------------------------------------------------- /frameworks/keyed/uhydro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhydro/index.html -------------------------------------------------------------------------------- /frameworks/keyed/uhydro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhydro/package.json -------------------------------------------------------------------------------- /frameworks/keyed/uhydro/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhydro/src/app.tsx -------------------------------------------------------------------------------- /frameworks/keyed/uhydro/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhydro/src/index.html -------------------------------------------------------------------------------- /frameworks/keyed/uhydro/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/uhydro/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/valtio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/valtio/index.html -------------------------------------------------------------------------------- /frameworks/keyed/valtio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/valtio/package.json -------------------------------------------------------------------------------- /frameworks/keyed/valtio/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/valtio/src/main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/vanillajs-1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vanillajs-1/index.html -------------------------------------------------------------------------------- /frameworks/keyed/vanillajs-1/src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vanillajs-1/src/Main.js -------------------------------------------------------------------------------- /frameworks/keyed/vanillajs-wc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vanillajs-wc/index.html -------------------------------------------------------------------------------- /frameworks/keyed/vanillajs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vanillajs/index.html -------------------------------------------------------------------------------- /frameworks/keyed/vanillajs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vanillajs/package.json -------------------------------------------------------------------------------- /frameworks/keyed/vanillajs/src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vanillajs/src/Main.js -------------------------------------------------------------------------------- /frameworks/keyed/vidom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vidom/index.html -------------------------------------------------------------------------------- /frameworks/keyed/vidom/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vidom/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/vidom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vidom/package.json -------------------------------------------------------------------------------- /frameworks/keyed/vidom/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vidom/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/vidom/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vidom/src/store.js -------------------------------------------------------------------------------- /frameworks/keyed/vidom/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vidom/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vue/index.html -------------------------------------------------------------------------------- /frameworks/keyed/vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vue/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vue/package.json -------------------------------------------------------------------------------- /frameworks/keyed/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vue/src/App.vue -------------------------------------------------------------------------------- /frameworks/keyed/vue/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vue/src/data.js -------------------------------------------------------------------------------- /frameworks/keyed/vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vue/src/main.js -------------------------------------------------------------------------------- /frameworks/keyed/vue/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vue/webpack.config.js -------------------------------------------------------------------------------- /frameworks/keyed/vuerx-jsx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vuerx-jsx/index.html -------------------------------------------------------------------------------- /frameworks/keyed/vuerx-jsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vuerx-jsx/package.json -------------------------------------------------------------------------------- /frameworks/keyed/vuerx-jsx/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/vuerx-jsx/src/main.jsx -------------------------------------------------------------------------------- /frameworks/keyed/wasm-bindgen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/wasm-bindgen/.gitignore -------------------------------------------------------------------------------- /frameworks/keyed/wasm-bindgen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/wasm-bindgen/Cargo.toml -------------------------------------------------------------------------------- /frameworks/keyed/wasm-bindgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/wasm-bindgen/README.md -------------------------------------------------------------------------------- /frameworks/keyed/wasm-bindgen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/wasm-bindgen/index.html -------------------------------------------------------------------------------- /frameworks/keyed/wasm-bindgen/index.js: -------------------------------------------------------------------------------- 1 | import("./pkg/index.js").catch(console.error); 2 | -------------------------------------------------------------------------------- /frameworks/keyed/wasm-bindgen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/wasm-bindgen/src/lib.rs -------------------------------------------------------------------------------- /frameworks/keyed/whatsup/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/whatsup/.babelrc -------------------------------------------------------------------------------- /frameworks/keyed/whatsup/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /frameworks/keyed/whatsup/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/whatsup/.prettierrc -------------------------------------------------------------------------------- /frameworks/keyed/whatsup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/whatsup/index.html -------------------------------------------------------------------------------- /frameworks/keyed/whatsup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/whatsup/package.json -------------------------------------------------------------------------------- /frameworks/keyed/whatsup/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/whatsup/src/main.tsx -------------------------------------------------------------------------------- /frameworks/keyed/whatsup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/whatsup/tsconfig.json -------------------------------------------------------------------------------- /frameworks/keyed/yew/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /target 3 | -------------------------------------------------------------------------------- /frameworks/keyed/yew/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/yew/Cargo.toml -------------------------------------------------------------------------------- /frameworks/keyed/yew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/yew/README.md -------------------------------------------------------------------------------- /frameworks/keyed/yew/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/yew/index.html -------------------------------------------------------------------------------- /frameworks/keyed/yew/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/yew/package-lock.json -------------------------------------------------------------------------------- /frameworks/keyed/yew/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/yew/package.json -------------------------------------------------------------------------------- /frameworks/keyed/yew/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/keyed/yew/src/lib.rs -------------------------------------------------------------------------------- /frameworks/non-keyed/apprun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/apprun/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/apprun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/apprun/package.json -------------------------------------------------------------------------------- /frameworks/non-keyed/apprun/src/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/apprun/src/jsx.d.ts -------------------------------------------------------------------------------- /frameworks/non-keyed/apprun/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/apprun/src/main.tsx -------------------------------------------------------------------------------- /frameworks/non-keyed/apprun/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/apprun/src/store.ts -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/aurelia/.babelrc -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/.gitignore: -------------------------------------------------------------------------------- 1 | scripts 2 | src/environment.js -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/aurelia_project/environments/dev.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: true 3 | }; 4 | -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/aurelia_project/environments/prod.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: false 3 | }; 4 | -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/aurelia_project/environments/stage.js: -------------------------------------------------------------------------------- 1 | export default { 2 | debug: true 3 | }; 4 | -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/aurelia/favicon.ico -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/aurelia/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/aurelia/src/app.js -------------------------------------------------------------------------------- /frameworks/non-keyed/aurelia/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/aurelia/src/main.js -------------------------------------------------------------------------------- /frameworks/non-keyed/bdc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/bdc/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/bdc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/bdc/package.json -------------------------------------------------------------------------------- /frameworks/non-keyed/bdc/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/bdc/src/app.js -------------------------------------------------------------------------------- /frameworks/non-keyed/delorean/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /target 3 | -------------------------------------------------------------------------------- /frameworks/non-keyed/delorean/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/delorean/Cargo.toml -------------------------------------------------------------------------------- /frameworks/non-keyed/delorean/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/delorean/README.md -------------------------------------------------------------------------------- /frameworks/non-keyed/delorean/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/delorean/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/delorean/index.js: -------------------------------------------------------------------------------- 1 | import("./pkg/index.js").catch(console.error); 2 | -------------------------------------------------------------------------------- /frameworks/non-keyed/delorean/src/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/delorean/src/app.rs -------------------------------------------------------------------------------- /frameworks/non-keyed/delorean/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/delorean/src/lib.rs -------------------------------------------------------------------------------- /frameworks/non-keyed/delorean/src/row.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/delorean/src/row.rs -------------------------------------------------------------------------------- /frameworks/non-keyed/dojo/.dojorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/dojo/.dojorc -------------------------------------------------------------------------------- /frameworks/non-keyed/dojo/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | /output 3 | -------------------------------------------------------------------------------- /frameworks/non-keyed/dojo/README.md: -------------------------------------------------------------------------------- 1 | # dojo-v6.0.0-keyed 2 | -------------------------------------------------------------------------------- /frameworks/non-keyed/dojo/src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/dojo/src/App.ts -------------------------------------------------------------------------------- /frameworks/non-keyed/dojo/src/Row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/dojo/src/Row.ts -------------------------------------------------------------------------------- /frameworks/non-keyed/dojo/src/main.css: -------------------------------------------------------------------------------- 1 | /* Put your styles and imports here */ 2 | -------------------------------------------------------------------------------- /frameworks/non-keyed/dojo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/dojo/src/main.ts -------------------------------------------------------------------------------- /frameworks/non-keyed/domvm/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/domvm/build.js -------------------------------------------------------------------------------- /frameworks/non-keyed/domvm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/domvm/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/doz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/doz/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/doz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/doz/package.json -------------------------------------------------------------------------------- /frameworks/non-keyed/doz/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/doz/src/index.js -------------------------------------------------------------------------------- /frameworks/non-keyed/elm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/elm/.gitignore -------------------------------------------------------------------------------- /frameworks/non-keyed/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/elm/elm.json -------------------------------------------------------------------------------- /frameworks/non-keyed/elm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/elm/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/elm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/elm/package.json -------------------------------------------------------------------------------- /frameworks/non-keyed/elm/src/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/elm/src/Main.elm -------------------------------------------------------------------------------- /frameworks/non-keyed/etch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/etch/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/etch/src/Row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/etch/src/Row.jsx -------------------------------------------------------------------------------- /frameworks/non-keyed/hullo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/hullo/.babelrc -------------------------------------------------------------------------------- /frameworks/non-keyed/hullo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/hullo/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/hydro-js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/hydro-js/app.js -------------------------------------------------------------------------------- /frameworks/non-keyed/imba/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/imba/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/incr_dom/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | **/*.bs.js 3 | .merlin 4 | _esy 5 | _release 6 | *.install 7 | -------------------------------------------------------------------------------- /frameworks/non-keyed/incr_dom/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/incr_dom/copy.sh -------------------------------------------------------------------------------- /frameworks/non-keyed/incr_dom/dune: -------------------------------------------------------------------------------- 1 | (dirs (:standard \ node_modules \ _esy)) -------------------------------------------------------------------------------- /frameworks/non-keyed/incr_dom/js-framework-benchmark-components.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/non-keyed/incr_dom/js-framework-benchmark.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frameworks/non-keyed/inferno/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/inferno/.babelrc -------------------------------------------------------------------------------- /frameworks/non-keyed/inferno/src/main.es6.js: -------------------------------------------------------------------------------- 1 | import './controller'; 2 | -------------------------------------------------------------------------------- /frameworks/non-keyed/lit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/lit/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/lit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/lit/package.json -------------------------------------------------------------------------------- /frameworks/non-keyed/lit/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/lit/src/main.ts -------------------------------------------------------------------------------- /frameworks/non-keyed/lit/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/lit/src/store.ts -------------------------------------------------------------------------------- /frameworks/non-keyed/literaljs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .cache 3 | dist -------------------------------------------------------------------------------- /frameworks/non-keyed/mimbl/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/mimbl/build.bat -------------------------------------------------------------------------------- /frameworks/non-keyed/mimbl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/mimbl/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/miso/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/miso/.gitignore -------------------------------------------------------------------------------- /frameworks/non-keyed/miso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/miso/README.md -------------------------------------------------------------------------------- /frameworks/non-keyed/miso/cabal.config: -------------------------------------------------------------------------------- 1 | compiler: ghcjs 2 | -------------------------------------------------------------------------------- /frameworks/non-keyed/miso/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/miso/default.nix -------------------------------------------------------------------------------- /frameworks/non-keyed/miso/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/miso/src/Main.hs -------------------------------------------------------------------------------- /frameworks/non-keyed/moon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/moon/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/neow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/neow/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/neow/main-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/neow/main-app.js -------------------------------------------------------------------------------- /frameworks/non-keyed/polymer/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /frameworks/non-keyed/ractive/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/ractive/.babelrc -------------------------------------------------------------------------------- /frameworks/non-keyed/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/react/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/redom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/redom/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/redom/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/redom/src/app.js -------------------------------------------------------------------------------- /frameworks/non-keyed/riot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/riot/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/riot/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/riot/src/main.js -------------------------------------------------------------------------------- /frameworks/non-keyed/san/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /frameworks/non-keyed/san/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/san/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/san/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/san/package.json -------------------------------------------------------------------------------- /frameworks/non-keyed/san/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/san/src/App.js -------------------------------------------------------------------------------- /frameworks/non-keyed/seed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/seed/.gitignore -------------------------------------------------------------------------------- /frameworks/non-keyed/seed/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/seed/Cargo.toml -------------------------------------------------------------------------------- /frameworks/non-keyed/seed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/seed/README.md -------------------------------------------------------------------------------- /frameworks/non-keyed/seed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/seed/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/seed/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/seed/src/lib.rs -------------------------------------------------------------------------------- /frameworks/non-keyed/sifrr/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/sifrr/app.js -------------------------------------------------------------------------------- /frameworks/non-keyed/sifrr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/sifrr/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/simi/.simi.toml: -------------------------------------------------------------------------------- 1 | output_path = "." 2 | -------------------------------------------------------------------------------- /frameworks/non-keyed/simi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/simi/Cargo.toml -------------------------------------------------------------------------------- /frameworks/non-keyed/simi/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/simi/build.js -------------------------------------------------------------------------------- /frameworks/non-keyed/simi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/simi/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/simi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/simi/src/lib.rs -------------------------------------------------------------------------------- /frameworks/non-keyed/stdweb/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /target 3 | -------------------------------------------------------------------------------- /frameworks/non-keyed/stdweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/stdweb/README.md -------------------------------------------------------------------------------- /frameworks/non-keyed/stem/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/stem/.babelrc -------------------------------------------------------------------------------- /frameworks/non-keyed/stem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/stem/.gitignore -------------------------------------------------------------------------------- /frameworks/non-keyed/stem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/stem/README.md -------------------------------------------------------------------------------- /frameworks/non-keyed/stem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/stem/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/stem/src/Row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/stem/src/Row.jsx -------------------------------------------------------------------------------- /frameworks/non-keyed/uhtml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/uhtml/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/vue/index.html -------------------------------------------------------------------------------- /frameworks/non-keyed/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/vue/package.json -------------------------------------------------------------------------------- /frameworks/non-keyed/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/vue/src/App.vue -------------------------------------------------------------------------------- /frameworks/non-keyed/vue/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/vue/src/data.js -------------------------------------------------------------------------------- /frameworks/non-keyed/vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/frameworks/non-keyed/vue/src/main.js -------------------------------------------------------------------------------- /images/firstRun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/images/firstRun.png -------------------------------------------------------------------------------- /images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/images/index.png -------------------------------------------------------------------------------- /images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/images/results.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/staticResults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/images/staticResults.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/index.html -------------------------------------------------------------------------------- /install_rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/install_rust.sh -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/lerna.json -------------------------------------------------------------------------------- /lws.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/lws.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/package.json -------------------------------------------------------------------------------- /push_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/push_results.sh -------------------------------------------------------------------------------- /rebuild-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/rebuild-all.js -------------------------------------------------------------------------------- /rebuild-single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/rebuild-single.js -------------------------------------------------------------------------------- /results-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/results-ui/package.json -------------------------------------------------------------------------------- /results-ui/src/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/results-ui/src/bootstrap-reboot.css -------------------------------------------------------------------------------- /results-ui/src/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/results-ui/src/build.js -------------------------------------------------------------------------------- /results-ui/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/results-ui/src/style.css -------------------------------------------------------------------------------- /results-ui/src/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/results-ui/src/ui.js -------------------------------------------------------------------------------- /webdriver-ts-results/.eslintignore: -------------------------------------------------------------------------------- 1 | webpack.config.js 2 | .eslintrc.js -------------------------------------------------------------------------------- /webdriver-ts-results/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/.eslintrc.json -------------------------------------------------------------------------------- /webdriver-ts-results/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/package.json -------------------------------------------------------------------------------- /webdriver-ts-results/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/src/App.css -------------------------------------------------------------------------------- /webdriver-ts-results/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/src/App.tsx -------------------------------------------------------------------------------- /webdriver-ts-results/src/Common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/src/Common.ts -------------------------------------------------------------------------------- /webdriver-ts-results/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/src/index.tsx -------------------------------------------------------------------------------- /webdriver-ts-results/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /webdriver-ts-results/src/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/src/reducer.ts -------------------------------------------------------------------------------- /webdriver-ts-results/src/results.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/src/results.ts -------------------------------------------------------------------------------- /webdriver-ts-results/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/table.html -------------------------------------------------------------------------------- /webdriver-ts-results/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts-results/tsconfig.json -------------------------------------------------------------------------------- /webdriver-ts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/README.txt -------------------------------------------------------------------------------- /webdriver-ts/check.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/check.dot -------------------------------------------------------------------------------- /webdriver-ts/chromePreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/chromePreferences.json -------------------------------------------------------------------------------- /webdriver-ts/csv_export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/csv_export.js -------------------------------------------------------------------------------- /webdriver-ts/index.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/index.dot -------------------------------------------------------------------------------- /webdriver-ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/package-lock.json -------------------------------------------------------------------------------- /webdriver-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/package.json -------------------------------------------------------------------------------- /webdriver-ts/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/results.json -------------------------------------------------------------------------------- /webdriver-ts/src/benchmarkRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/benchmarkRunner.ts -------------------------------------------------------------------------------- /webdriver-ts/src/benchmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/benchmarks.ts -------------------------------------------------------------------------------- /webdriver-ts/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/common.ts -------------------------------------------------------------------------------- /webdriver-ts/src/createIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/createIndex.ts -------------------------------------------------------------------------------- /webdriver-ts/src/createResultJS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/createResultJS.ts -------------------------------------------------------------------------------- /webdriver-ts/src/isKeyed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/isKeyed.ts -------------------------------------------------------------------------------- /webdriver-ts/src/lighthouseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/lighthouseConfig.ts -------------------------------------------------------------------------------- /webdriver-ts/src/rebuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/rebuild.ts -------------------------------------------------------------------------------- /webdriver-ts/src/updateFrameworks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/updateFrameworks.ts -------------------------------------------------------------------------------- /webdriver-ts/src/webdriverAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/webdriverAccess.ts -------------------------------------------------------------------------------- /webdriver-ts/src/writeResults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/src/writeResults.ts -------------------------------------------------------------------------------- /webdriver-ts/table.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/table.dot -------------------------------------------------------------------------------- /webdriver-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yyx990803/js-framework-benchmark/HEAD/webdriver-ts/tsconfig.json --------------------------------------------------------------------------------