├── .README ├── ios-bundling-webroot-folder.png ├── logo-dr-pogodin-studio.svg ├── logo-integreat.svg ├── logo-luna4.png └── sponsor.svg ├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── .npmignore ├── .nvmrc ├── .watchmanconfig ├── .yarn └── releases │ └── yarn-4.10.3.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── ReactNativeStaticServer.podspec ├── android ├── build.gradle ├── gradle.properties ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ ├── drpogodin │ └── reactnativestaticserver │ │ ├── Errors.kt │ │ ├── InetAddressUtils.kt │ │ ├── ReactNativeStaticServerModule.kt │ │ └── ReactNativeStaticServerPackage.kt │ └── lighttpd │ └── Server.kt ├── babel.config.js ├── eslint.config.mjs ├── example ├── .bundle │ └── config ├── .watchmanconfig ├── Gemfile ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── drpogodin │ │ │ │ └── reactnativestaticserver │ │ │ │ └── example │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── 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 │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── assets │ └── webroot │ │ ├── index.html │ │ ├── script.js │ │ ├── style.css │ │ └── version ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── ReactNativeStaticServerExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ReactNativeStaticServerExample.xcscheme │ ├── ReactNativeStaticServerExample.xcworkspace │ │ └── contents.xcworkspacedata │ └── ReactNativeStaticServerExample │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── ReactNativeStaticServerExample.entitlements ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── src │ └── App.tsx └── windows │ ├── .gitignore │ ├── ExperimentalFeatures.props │ ├── NuGet.Config │ ├── ReactNativeStaticServerExample.sln │ └── ReactNativeStaticServerExample │ ├── .gitignore │ ├── App.cpp │ ├── App.h │ ├── App.idl │ ├── App.xaml │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── AutolinkedNativeModules.g.cpp │ ├── AutolinkedNativeModules.g.h │ ├── AutolinkedNativeModules.g.props │ ├── AutolinkedNativeModules.g.targets │ ├── MainPage.cpp │ ├── MainPage.h │ ├── MainPage.idl │ ├── MainPage.xaml │ ├── Package.appxmanifest │ ├── PropertySheet.props │ ├── ReactNativeStaticServerExample.vcxproj │ ├── ReactNativeStaticServerExample.vcxproj.filters │ ├── ReactPackageProvider.cpp │ ├── ReactPackageProvider.h │ ├── pch.cpp │ └── pch.h ├── glob ├── CMakeLists.txt ├── README.md ├── collate.h ├── freebsd-compat.h ├── glob.c └── glob.h ├── ios ├── Errors.h ├── Errors.mm ├── ReactNativeStaticServer.h ├── ReactNativeStaticServer.mm ├── Server.h └── Server.mm ├── package.json ├── prettierrc.js ├── src ├── NativeReactNativeStaticServer.ts ├── config.ts ├── constants.ts ├── index.tsx └── utils.ts ├── tsconfig.build.json ├── tsconfig.json ├── windows ├── .gitignore ├── ExperimentalFeatures.props ├── NuGet.Config ├── ReactNativeStaticServer.sln ├── ReactNativeStaticServer │ ├── Errors.cpp │ ├── Errors.h │ ├── PropertySheet.props │ ├── ReactNativeModule.cpp │ ├── ReactNativeModule.h │ ├── ReactNativeStaticServer.def │ ├── ReactNativeStaticServer.vcxproj │ ├── ReactNativeStaticServer.vcxproj.filters │ ├── ReactPackageProvider.cpp │ ├── ReactPackageProvider.h │ ├── ReactPackageProvider.idl │ ├── Server.cpp │ ├── Server.h │ ├── codegen │ │ ├── .clang-format │ │ └── NativeReactNativeStaticServerSpec.g.h │ ├── lighttpd │ │ ├── lemon.exe │ │ ├── libpcre2-8.dll │ │ ├── libwinpthread-1.dll │ │ ├── lighttpd.dll │ │ ├── mod_dirlisting.dll │ │ ├── mod_h2.dll │ │ └── mod_webdav.dll │ ├── packages.lock.json │ ├── pch.cpp │ └── pch.h └── mingw.sh └── yarn.lock /.README/ios-bundling-webroot-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.README/ios-bundling-webroot-folder.png -------------------------------------------------------------------------------- /.README/logo-dr-pogodin-studio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.README/logo-dr-pogodin-studio.svg -------------------------------------------------------------------------------- /.README/logo-integreat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.README/logo-integreat.svg -------------------------------------------------------------------------------- /.README/logo-luna4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.README/logo-luna4.png -------------------------------------------------------------------------------- /.README/sponsor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.README/sponsor.svg -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: birdofpreyru -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v24.11.1 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.10.3.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.yarn/releases/yarn-4.10.3.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/README.md -------------------------------------------------------------------------------- /ReactNativeStaticServer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/ReactNativeStaticServer.podspec -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/drpogodin/reactnativestaticserver/Errors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/src/main/java/com/drpogodin/reactnativestaticserver/Errors.kt -------------------------------------------------------------------------------- /android/src/main/java/com/drpogodin/reactnativestaticserver/InetAddressUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/src/main/java/com/drpogodin/reactnativestaticserver/InetAddressUtils.kt -------------------------------------------------------------------------------- /android/src/main/java/com/drpogodin/reactnativestaticserver/ReactNativeStaticServerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/src/main/java/com/drpogodin/reactnativestaticserver/ReactNativeStaticServerModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/drpogodin/reactnativestaticserver/ReactNativeStaticServerPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/src/main/java/com/drpogodin/reactnativestaticserver/ReactNativeStaticServerPackage.kt -------------------------------------------------------------------------------- /android/src/main/java/com/lighttpd/Server.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/android/src/main/java/com/lighttpd/Server.kt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/babel.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/drpogodin/reactnativestaticserver/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/java/drpogodin/reactnativestaticserver/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/drpogodin/reactnativestaticserver/example/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/java/drpogodin/reactnativestaticserver/example/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/webroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/assets/webroot/index.html -------------------------------------------------------------------------------- /example/assets/webroot/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/assets/webroot/script.js -------------------------------------------------------------------------------- /example/assets/webroot/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/assets/webroot/style.css -------------------------------------------------------------------------------- /example/assets/webroot/version: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample.xcodeproj/xcshareddata/xcschemes/ReactNativeStaticServerExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample.xcodeproj/xcshareddata/xcschemes/ReactNativeStaticServerExample.xcscheme -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample/Info.plist -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/ReactNativeStaticServerExample/ReactNativeStaticServerExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/ios/ReactNativeStaticServerExample/ReactNativeStaticServerExample.entitlements -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: "react-native", 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/windows/ExperimentalFeatures.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ExperimentalFeatures.props -------------------------------------------------------------------------------- /example/windows/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/NuGet.Config -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample.sln -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/.gitignore: -------------------------------------------------------------------------------- 1 | /Bundle 2 | -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/App.cpp -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/App.h -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/App.idl: -------------------------------------------------------------------------------- 1 | namespace ReactNativeStaticServerExample 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/App.xaml -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/AutolinkedNativeModules.g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/AutolinkedNativeModules.g.cpp -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/AutolinkedNativeModules.g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/AutolinkedNativeModules.g.h -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/AutolinkedNativeModules.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/AutolinkedNativeModules.g.props -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/AutolinkedNativeModules.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/AutolinkedNativeModules.g.targets -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/MainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/MainPage.cpp -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/MainPage.h -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/MainPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/MainPage.idl -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/MainPage.xaml -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/Package.appxmanifest -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/PropertySheet.props -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/ReactNativeStaticServerExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/ReactNativeStaticServerExample.vcxproj -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/ReactNativeStaticServerExample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/ReactNativeStaticServerExample.vcxproj.filters -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/ReactPackageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/ReactPackageProvider.cpp -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/ReactPackageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/ReactPackageProvider.h -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /example/windows/ReactNativeStaticServerExample/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/example/windows/ReactNativeStaticServerExample/pch.h -------------------------------------------------------------------------------- /glob/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/glob/CMakeLists.txt -------------------------------------------------------------------------------- /glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/glob/README.md -------------------------------------------------------------------------------- /glob/collate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/glob/collate.h -------------------------------------------------------------------------------- /glob/freebsd-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/glob/freebsd-compat.h -------------------------------------------------------------------------------- /glob/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/glob/glob.c -------------------------------------------------------------------------------- /glob/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/glob/glob.h -------------------------------------------------------------------------------- /ios/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/ios/Errors.h -------------------------------------------------------------------------------- /ios/Errors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/ios/Errors.mm -------------------------------------------------------------------------------- /ios/ReactNativeStaticServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/ios/ReactNativeStaticServer.h -------------------------------------------------------------------------------- /ios/ReactNativeStaticServer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/ios/ReactNativeStaticServer.mm -------------------------------------------------------------------------------- /ios/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/ios/Server.h -------------------------------------------------------------------------------- /ios/Server.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/ios/Server.mm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/package.json -------------------------------------------------------------------------------- /prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/prettierrc.js -------------------------------------------------------------------------------- /src/NativeReactNativeStaticServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/src/NativeReactNativeStaticServer.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/ExperimentalFeatures.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ExperimentalFeatures.props -------------------------------------------------------------------------------- /windows/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/NuGet.Config -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer.sln -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/Errors.cpp -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/Errors.h -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/PropertySheet.props -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/ReactNativeModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/ReactNativeModule.cpp -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/ReactNativeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/ReactNativeModule.h -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/ReactNativeStaticServer.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/ReactNativeStaticServer.def -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/ReactNativeStaticServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/ReactNativeStaticServer.vcxproj -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/ReactNativeStaticServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/ReactNativeStaticServer.vcxproj.filters -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/ReactPackageProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/ReactPackageProvider.cpp -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/ReactPackageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/ReactPackageProvider.h -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/ReactPackageProvider.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/ReactPackageProvider.idl -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/Server.cpp -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/Server.h -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/codegen/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/codegen/NativeReactNativeStaticServerSpec.g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/codegen/NativeReactNativeStaticServerSpec.g.h -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/lighttpd/lemon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/lighttpd/lemon.exe -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/lighttpd/libpcre2-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/lighttpd/libpcre2-8.dll -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/lighttpd/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/lighttpd/libwinpthread-1.dll -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/lighttpd/lighttpd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/lighttpd/lighttpd.dll -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/lighttpd/mod_dirlisting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/lighttpd/mod_dirlisting.dll -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/lighttpd/mod_h2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/lighttpd/mod_h2.dll -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/lighttpd/mod_webdav.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/lighttpd/mod_webdav.dll -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/packages.lock.json -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /windows/ReactNativeStaticServer/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/ReactNativeStaticServer/pch.h -------------------------------------------------------------------------------- /windows/mingw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/windows/mingw.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birdofpreyru/react-native-static-server/HEAD/yarn.lock --------------------------------------------------------------------------------