├── .buckconfig ├── .bundle └── config ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitignore ├── .prettierrc.js ├── .ruby-version ├── .watchmanconfig ├── App.js ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── __tests__ └── App-test.js ├── android ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hermes │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rnbenchmark │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable-mdpi │ │ └── node_modules_reactnative_libraries_newappscreen_components_logo.png │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── jsc │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rnbenchmark │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable-mdpi │ │ └── node_modules_reactnative_libraries_newappscreen_components_logo.png │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── settings.gradle └── v8 │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ ├── debug │ └── AndroidManifest.xml │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── rnbenchmark │ │ ├── MainActivity.java │ │ ├── MainApplication.java │ │ └── newarchitecture │ │ ├── MainApplicationReactNativeHost.java │ │ ├── components │ │ └── MainComponentsRegistry.java │ │ └── modules │ │ └── MainApplicationTurboModuleManagerDelegate.java │ ├── jni │ ├── Android.mk │ ├── MainApplicationModuleProvider.cpp │ ├── MainApplicationModuleProvider.h │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ ├── MainApplicationTurboModuleManagerDelegate.h │ ├── MainComponentsRegistry.cpp │ ├── MainComponentsRegistry.h │ └── OnLoad.cpp │ └── res │ ├── drawable-mdpi │ └── node_modules_reactnative_libraries_newappscreen_components_logo.png │ ├── drawable │ └── rn_edit_text_material.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── strings.xml │ └── styles.xml ├── app.json ├── babel.config.js ├── index.js ├── js_dists.py ├── lib ├── __init__.py ├── colorful.py ├── logger.py ├── section.py ├── tools.py └── types.py ├── metro.config.js ├── package.json ├── react-native.config.js ├── src ├── ReactRender │ ├── RenderComponentMemory.js │ └── RenderComponentThroughput.js └── TTI │ ├── TTIView.js │ └── data.json ├── start.py ├── website ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── components │ └── Chart.tsx ├── env-config.js ├── next-env.d.ts ├── next.config.js ├── out │ ├── 404.html │ ├── _next │ │ └── static │ │ │ ├── chunks │ │ │ ├── 333-7d5bcd5502c82377.js │ │ │ ├── 36bcf0ca-38c7a396cae02552.js │ │ │ ├── framework-00b57966872fc495.js │ │ │ ├── main-f4ae3437c92c1efc.js │ │ │ ├── pages │ │ │ │ ├── _app-85d7488a393e293e.js │ │ │ │ ├── _error-1995526792b513b2.js │ │ │ │ └── index-b051f3a4587db0bf.js │ │ │ ├── polyfills-5cd94c89d3acac5f.js │ │ │ └── webpack-3c5894a45e827ae9.js │ │ │ ├── css │ │ │ ├── 27d177a30947857b.css │ │ │ └── dad84d14e16a7e3d.css │ │ │ └── fhXGm-tGR2o6BukQJOeI8 │ │ │ ├── _buildManifest.js │ │ │ ├── _middlewareManifest.js │ │ │ └── _ssgManifest.js │ ├── data.json │ └── index.html ├── package.json ├── pages │ ├── _app.tsx │ └── index.tsx ├── public │ └── data.json ├── styles │ ├── Chart.module.css │ ├── Home.module.css │ └── globals.css ├── tsconfig.json ├── types │ └── index.ts └── yarn.lock └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/.buckconfig -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/.bundle/config -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/App.js -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/hermes/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/BUCK -------------------------------------------------------------------------------- /android/hermes/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/build.gradle -------------------------------------------------------------------------------- /android/hermes/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/build_defs.bzl -------------------------------------------------------------------------------- /android/hermes/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/debug.keystore -------------------------------------------------------------------------------- /android/hermes/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/proguard-rules.pro -------------------------------------------------------------------------------- /android/hermes/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/hermes/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/hermes/src/main/java/com/rnbenchmark/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/java/com/rnbenchmark/MainActivity.java -------------------------------------------------------------------------------- /android/hermes/src/main/java/com/rnbenchmark/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/java/com/rnbenchmark/MainApplication.java -------------------------------------------------------------------------------- /android/hermes/src/main/java/com/rnbenchmark/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/java/com/rnbenchmark/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/hermes/src/main/java/com/rnbenchmark/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/java/com/rnbenchmark/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/hermes/src/main/java/com/rnbenchmark/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/java/com/rnbenchmark/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/hermes/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/jni/Android.mk -------------------------------------------------------------------------------- /android/hermes/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/hermes/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/hermes/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/hermes/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/hermes/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/hermes/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/hermes/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/hermes/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_newappscreen_components_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_newappscreen_components_logo.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/hermes/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/hermes/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/hermes/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/jsc/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/BUCK -------------------------------------------------------------------------------- /android/jsc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/build.gradle -------------------------------------------------------------------------------- /android/jsc/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/build_defs.bzl -------------------------------------------------------------------------------- /android/jsc/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/debug.keystore -------------------------------------------------------------------------------- /android/jsc/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/proguard-rules.pro -------------------------------------------------------------------------------- /android/jsc/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/jsc/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/jsc/src/main/java/com/rnbenchmark/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/java/com/rnbenchmark/MainActivity.java -------------------------------------------------------------------------------- /android/jsc/src/main/java/com/rnbenchmark/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/java/com/rnbenchmark/MainApplication.java -------------------------------------------------------------------------------- /android/jsc/src/main/java/com/rnbenchmark/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/java/com/rnbenchmark/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/jsc/src/main/java/com/rnbenchmark/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/java/com/rnbenchmark/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/jsc/src/main/java/com/rnbenchmark/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/java/com/rnbenchmark/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/jsc/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/jni/Android.mk -------------------------------------------------------------------------------- /android/jsc/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/jsc/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/jsc/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/jsc/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/jsc/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/jsc/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/jsc/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/jsc/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_newappscreen_components_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_newappscreen_components_logo.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/jsc/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/jsc/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/jsc/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/v8/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/BUCK -------------------------------------------------------------------------------- /android/v8/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/build.gradle -------------------------------------------------------------------------------- /android/v8/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/build_defs.bzl -------------------------------------------------------------------------------- /android/v8/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/debug.keystore -------------------------------------------------------------------------------- /android/v8/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/proguard-rules.pro -------------------------------------------------------------------------------- /android/v8/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/v8/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/v8/src/main/java/com/rnbenchmark/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/java/com/rnbenchmark/MainActivity.java -------------------------------------------------------------------------------- /android/v8/src/main/java/com/rnbenchmark/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/java/com/rnbenchmark/MainApplication.java -------------------------------------------------------------------------------- /android/v8/src/main/java/com/rnbenchmark/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/java/com/rnbenchmark/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/v8/src/main/java/com/rnbenchmark/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/java/com/rnbenchmark/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/v8/src/main/java/com/rnbenchmark/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/java/com/rnbenchmark/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/v8/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/jni/Android.mk -------------------------------------------------------------------------------- /android/v8/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/v8/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/v8/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/v8/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/v8/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/v8/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/v8/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/v8/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_newappscreen_components_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_newappscreen_components_logo.png -------------------------------------------------------------------------------- /android/v8/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v8/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/v8/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/v8/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/android/v8/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/index.js -------------------------------------------------------------------------------- /js_dists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/js_dists.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/colorful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/lib/colorful.py -------------------------------------------------------------------------------- /lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/lib/logger.py -------------------------------------------------------------------------------- /lib/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/lib/section.py -------------------------------------------------------------------------------- /lib/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/lib/tools.py -------------------------------------------------------------------------------- /lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/lib/types.py -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/ReactRender/RenderComponentMemory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/src/ReactRender/RenderComponentMemory.js -------------------------------------------------------------------------------- /src/ReactRender/RenderComponentThroughput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/src/ReactRender/RenderComponentThroughput.js -------------------------------------------------------------------------------- /src/TTI/TTIView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/src/TTI/TTIView.js -------------------------------------------------------------------------------- /src/TTI/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/src/TTI/data.json -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/start.py -------------------------------------------------------------------------------- /website/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/.prettierrc -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/README.md -------------------------------------------------------------------------------- /website/components/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/components/Chart.tsx -------------------------------------------------------------------------------- /website/env-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/env-config.js -------------------------------------------------------------------------------- /website/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/next-env.d.ts -------------------------------------------------------------------------------- /website/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/next.config.js -------------------------------------------------------------------------------- /website/out/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/404.html -------------------------------------------------------------------------------- /website/out/_next/static/chunks/333-7d5bcd5502c82377.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/333-7d5bcd5502c82377.js -------------------------------------------------------------------------------- /website/out/_next/static/chunks/36bcf0ca-38c7a396cae02552.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/36bcf0ca-38c7a396cae02552.js -------------------------------------------------------------------------------- /website/out/_next/static/chunks/framework-00b57966872fc495.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/framework-00b57966872fc495.js -------------------------------------------------------------------------------- /website/out/_next/static/chunks/main-f4ae3437c92c1efc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/main-f4ae3437c92c1efc.js -------------------------------------------------------------------------------- /website/out/_next/static/chunks/pages/_app-85d7488a393e293e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/pages/_app-85d7488a393e293e.js -------------------------------------------------------------------------------- /website/out/_next/static/chunks/pages/_error-1995526792b513b2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/pages/_error-1995526792b513b2.js -------------------------------------------------------------------------------- /website/out/_next/static/chunks/pages/index-b051f3a4587db0bf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/pages/index-b051f3a4587db0bf.js -------------------------------------------------------------------------------- /website/out/_next/static/chunks/polyfills-5cd94c89d3acac5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/polyfills-5cd94c89d3acac5f.js -------------------------------------------------------------------------------- /website/out/_next/static/chunks/webpack-3c5894a45e827ae9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/chunks/webpack-3c5894a45e827ae9.js -------------------------------------------------------------------------------- /website/out/_next/static/css/27d177a30947857b.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/css/27d177a30947857b.css -------------------------------------------------------------------------------- /website/out/_next/static/css/dad84d14e16a7e3d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/css/dad84d14e16a7e3d.css -------------------------------------------------------------------------------- /website/out/_next/static/fhXGm-tGR2o6BukQJOeI8/_buildManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/fhXGm-tGR2o6BukQJOeI8/_buildManifest.js -------------------------------------------------------------------------------- /website/out/_next/static/fhXGm-tGR2o6BukQJOeI8/_middlewareManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/fhXGm-tGR2o6BukQJOeI8/_middlewareManifest.js -------------------------------------------------------------------------------- /website/out/_next/static/fhXGm-tGR2o6BukQJOeI8/_ssgManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/_next/static/fhXGm-tGR2o6BukQJOeI8/_ssgManifest.js -------------------------------------------------------------------------------- /website/out/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/data.json -------------------------------------------------------------------------------- /website/out/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/out/index.html -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/pages/_app.tsx -------------------------------------------------------------------------------- /website/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/pages/index.tsx -------------------------------------------------------------------------------- /website/public/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/public/data.json -------------------------------------------------------------------------------- /website/styles/Chart.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | width: 50vw; 3 | } 4 | -------------------------------------------------------------------------------- /website/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/styles/Home.module.css -------------------------------------------------------------------------------- /website/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/styles/globals.css -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/types/index.ts -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-js-benchmark/HEAD/yarn.lock --------------------------------------------------------------------------------