├── .gitignore ├── App.js ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── mrousavy │ │ │ └── NitroBenchmarks │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable-hdpi │ │ └── splashscreen_image.png │ │ ├── drawable-mdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xhdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xxhdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xxxhdpi │ │ └── splashscreen_image.png │ │ ├── drawable │ │ ├── rn_edit_text_material.xml │ │ └── splashscreen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-night │ │ └── colors.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── ios ├── .gitignore ├── .xcode.env ├── NitroBenchmarks.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── NitroBenchmarks.xcscheme ├── NitroBenchmarks.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── NitroBenchmarks │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ └── SplashScreenBackground.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ ├── Info.plist │ ├── NitroBenchmarks-Bridging-Header.h │ ├── NitroBenchmarks.entitlements │ ├── PrivacyInfo.xcprivacy │ ├── SplashScreen.storyboard │ ├── Supporting │ │ └── Expo.plist │ ├── main.m │ └── noop-file.swift ├── Podfile ├── Podfile.lock └── Podfile.properties.json ├── modules ├── my-module │ ├── README.md │ ├── android │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── expo │ │ │ └── modules │ │ │ └── mymodule │ │ │ ├── MyModule.kt │ │ │ └── MyModuleView.kt │ ├── expo-module.config.json │ ├── index.ts │ ├── ios │ │ ├── MyModule.podspec │ │ └── MyModule.swift │ └── src │ │ ├── MyModule.ts │ │ ├── MyModule.types.ts │ │ └── MyModule.web.ts ├── nitro-module │ ├── MyNitroModule.podspec │ ├── README.md │ ├── cpp │ │ ├── HybridMyCxxModule.cpp │ │ └── HybridMyCxxModule.hpp │ ├── index.ts │ ├── ios │ │ ├── HybridMyModule.swift │ │ ├── MyNitroModuleOnLoad.mm │ │ └── MyNitroModuleRegistry.swift │ ├── nitro.json │ ├── nitrogen │ │ └── generated │ │ │ ├── android │ │ │ ├── MyNitroModule+autolinking.cmake │ │ │ └── MyNitroModule+autolinking.gradle │ │ │ ├── ios │ │ │ ├── MyNitroModule+autolinking.rb │ │ │ ├── c++ │ │ │ │ ├── HybridMyModuleSpecSwift.cpp │ │ │ │ └── HybridMyModuleSpecSwift.hpp │ │ │ └── swift │ │ │ │ ├── HybridMyModuleSpec.swift │ │ │ │ ├── HybridMyModuleSpecCxx+ResultTypes.swift │ │ │ │ └── HybridMyModuleSpecCxx.swift │ │ │ └── shared │ │ │ └── c++ │ │ │ ├── HybridMyCxxModuleSpec.cpp │ │ │ ├── HybridMyCxxModuleSpec.hpp │ │ │ ├── HybridMyModuleSpec.cpp │ │ │ └── HybridMyModuleSpec.hpp │ └── specs │ │ └── MyModule.nitro.ts └── turbo-module │ ├── MyTurboModule.podspec │ ├── README.md │ ├── ios │ ├── MyTurboModule.h │ └── MyTurboModule.mm │ ├── js │ ├── NativeMyTurboModule.ts │ └── index.ts │ └── package.json ├── package.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/mrousavy/NitroBenchmarks/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/java/com/mrousavy/NitroBenchmarks/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/mrousavy/NitroBenchmarks/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/java/com/mrousavy/NitroBenchmarks/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/babel.config.js -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/NitroBenchmarks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/NitroBenchmarks.xcodeproj/xcshareddata/xcschemes/NitroBenchmarks.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks.xcodeproj/xcshareddata/xcschemes/NitroBenchmarks.xcscheme -------------------------------------------------------------------------------- /ios/NitroBenchmarks.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/NitroBenchmarks.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/NitroBenchmarks/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/AppDelegate.h -------------------------------------------------------------------------------- /ios/NitroBenchmarks/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/AppDelegate.mm -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Info.plist -------------------------------------------------------------------------------- /ios/NitroBenchmarks/NitroBenchmarks-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/NitroBenchmarks-Bridging-Header.h -------------------------------------------------------------------------------- /ios/NitroBenchmarks/NitroBenchmarks.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/NitroBenchmarks.entitlements -------------------------------------------------------------------------------- /ios/NitroBenchmarks/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /ios/NitroBenchmarks/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/NitroBenchmarks/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/NitroBenchmarks/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/main.m -------------------------------------------------------------------------------- /ios/NitroBenchmarks/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/NitroBenchmarks/noop-file.swift -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/ios/Podfile.properties.json -------------------------------------------------------------------------------- /modules/my-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/README.md -------------------------------------------------------------------------------- /modules/my-module/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/android/build.gradle -------------------------------------------------------------------------------- /modules/my-module/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /modules/my-module/android/src/main/java/expo/modules/mymodule/MyModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/android/src/main/java/expo/modules/mymodule/MyModule.kt -------------------------------------------------------------------------------- /modules/my-module/android/src/main/java/expo/modules/mymodule/MyModuleView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/android/src/main/java/expo/modules/mymodule/MyModuleView.kt -------------------------------------------------------------------------------- /modules/my-module/expo-module.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/expo-module.config.json -------------------------------------------------------------------------------- /modules/my-module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/index.ts -------------------------------------------------------------------------------- /modules/my-module/ios/MyModule.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/ios/MyModule.podspec -------------------------------------------------------------------------------- /modules/my-module/ios/MyModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/ios/MyModule.swift -------------------------------------------------------------------------------- /modules/my-module/src/MyModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/src/MyModule.ts -------------------------------------------------------------------------------- /modules/my-module/src/MyModule.types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/my-module/src/MyModule.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/my-module/src/MyModule.web.ts -------------------------------------------------------------------------------- /modules/nitro-module/MyNitroModule.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/MyNitroModule.podspec -------------------------------------------------------------------------------- /modules/nitro-module/README.md: -------------------------------------------------------------------------------- 1 | # An example nitro module 2 | 3 | I just followed my docs 4 | -------------------------------------------------------------------------------- /modules/nitro-module/cpp/HybridMyCxxModule.cpp: -------------------------------------------------------------------------------- 1 | #include "HybridMyCxxModule.hpp" 2 | -------------------------------------------------------------------------------- /modules/nitro-module/cpp/HybridMyCxxModule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/cpp/HybridMyCxxModule.hpp -------------------------------------------------------------------------------- /modules/nitro-module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/index.ts -------------------------------------------------------------------------------- /modules/nitro-module/ios/HybridMyModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/ios/HybridMyModule.swift -------------------------------------------------------------------------------- /modules/nitro-module/ios/MyNitroModuleOnLoad.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/ios/MyNitroModuleOnLoad.mm -------------------------------------------------------------------------------- /modules/nitro-module/ios/MyNitroModuleRegistry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/ios/MyNitroModuleRegistry.swift -------------------------------------------------------------------------------- /modules/nitro-module/nitro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitro.json -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/android/MyNitroModule+autolinking.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/android/MyNitroModule+autolinking.cmake -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/android/MyNitroModule+autolinking.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/android/MyNitroModule+autolinking.gradle -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/ios/MyNitroModule+autolinking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/ios/MyNitroModule+autolinking.rb -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/ios/c++/HybridMyModuleSpecSwift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/ios/c++/HybridMyModuleSpecSwift.cpp -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/ios/c++/HybridMyModuleSpecSwift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/ios/c++/HybridMyModuleSpecSwift.hpp -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/ios/swift/HybridMyModuleSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/ios/swift/HybridMyModuleSpec.swift -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/ios/swift/HybridMyModuleSpecCxx+ResultTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/ios/swift/HybridMyModuleSpecCxx+ResultTypes.swift -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/ios/swift/HybridMyModuleSpecCxx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/ios/swift/HybridMyModuleSpecCxx.swift -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/shared/c++/HybridMyCxxModuleSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/shared/c++/HybridMyCxxModuleSpec.cpp -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/shared/c++/HybridMyCxxModuleSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/shared/c++/HybridMyCxxModuleSpec.hpp -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/shared/c++/HybridMyModuleSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/shared/c++/HybridMyModuleSpec.cpp -------------------------------------------------------------------------------- /modules/nitro-module/nitrogen/generated/shared/c++/HybridMyModuleSpec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/nitrogen/generated/shared/c++/HybridMyModuleSpec.hpp -------------------------------------------------------------------------------- /modules/nitro-module/specs/MyModule.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/nitro-module/specs/MyModule.nitro.ts -------------------------------------------------------------------------------- /modules/turbo-module/MyTurboModule.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/turbo-module/MyTurboModule.podspec -------------------------------------------------------------------------------- /modules/turbo-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/turbo-module/README.md -------------------------------------------------------------------------------- /modules/turbo-module/ios/MyTurboModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/turbo-module/ios/MyTurboModule.h -------------------------------------------------------------------------------- /modules/turbo-module/ios/MyTurboModule.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/turbo-module/ios/MyTurboModule.mm -------------------------------------------------------------------------------- /modules/turbo-module/js/NativeMyTurboModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/turbo-module/js/NativeMyTurboModule.ts -------------------------------------------------------------------------------- /modules/turbo-module/js/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/turbo-module/js/index.ts -------------------------------------------------------------------------------- /modules/turbo-module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/modules/turbo-module/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrousavy/NitroBenchmarks/HEAD/yarn.lock --------------------------------------------------------------------------------