├── .DS_Store ├── .gitignore ├── .npmignore ├── README.md ├── bin ├── build.js ├── cli.js └── npm-debug.log ├── npm-debug.log ├── package.json └── src ├── .DS_Store ├── .gitignore ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── rnweb │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.js ├── app.json ├── index.android.js ├── index.ios.js ├── index.web.js ├── ios ├── RNWeb-tvOS │ └── Info.plist ├── RNWeb-tvOSTests │ └── Info.plist ├── RNWeb.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RNWeb-tvOS.xcscheme │ │ └── RNWeb.xcscheme ├── RNWeb │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── RNWebTests │ ├── Info.plist │ └── RNWebTests.m ├── jack.gif ├── jsconfig.json ├── package.json ├── web ├── .DS_Store └── dist │ └── index.html └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/README.md -------------------------------------------------------------------------------- /bin/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/bin/build.js -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/bin/cli.js -------------------------------------------------------------------------------- /bin/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/bin/npm-debug.log -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/npm-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/package.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /src/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/__tests__/index.android.js -------------------------------------------------------------------------------- /src/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/__tests__/index.ios.js -------------------------------------------------------------------------------- /src/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/BUCK -------------------------------------------------------------------------------- /src/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/build.gradle -------------------------------------------------------------------------------- /src/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /src/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/android/app/src/main/java/com/rnweb/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/java/com/rnweb/MainActivity.java -------------------------------------------------------------------------------- /src/android/app/src/main/java/com/rnweb/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/java/com/rnweb/MainApplication.java -------------------------------------------------------------------------------- /src/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /src/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /src/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/build.gradle -------------------------------------------------------------------------------- /src/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/gradle.properties -------------------------------------------------------------------------------- /src/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/gradlew -------------------------------------------------------------------------------- /src/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/gradlew.bat -------------------------------------------------------------------------------- /src/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/keystores/BUCK -------------------------------------------------------------------------------- /src/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /src/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'RNWeb' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/app.js -------------------------------------------------------------------------------- /src/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/app.json -------------------------------------------------------------------------------- /src/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/index.android.js -------------------------------------------------------------------------------- /src/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/index.ios.js -------------------------------------------------------------------------------- /src/index.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/index.web.js -------------------------------------------------------------------------------- /src/ios/RNWeb-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb-tvOS/Info.plist -------------------------------------------------------------------------------- /src/ios/RNWeb-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb-tvOSTests/Info.plist -------------------------------------------------------------------------------- /src/ios/RNWeb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/ios/RNWeb.xcodeproj/xcshareddata/xcschemes/RNWeb-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb.xcodeproj/xcshareddata/xcschemes/RNWeb-tvOS.xcscheme -------------------------------------------------------------------------------- /src/ios/RNWeb.xcodeproj/xcshareddata/xcschemes/RNWeb.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb.xcodeproj/xcshareddata/xcschemes/RNWeb.xcscheme -------------------------------------------------------------------------------- /src/ios/RNWeb/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb/AppDelegate.h -------------------------------------------------------------------------------- /src/ios/RNWeb/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb/AppDelegate.m -------------------------------------------------------------------------------- /src/ios/RNWeb/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /src/ios/RNWeb/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/ios/RNWeb/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb/Info.plist -------------------------------------------------------------------------------- /src/ios/RNWeb/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWeb/main.m -------------------------------------------------------------------------------- /src/ios/RNWebTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWebTests/Info.plist -------------------------------------------------------------------------------- /src/ios/RNWebTests/RNWebTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/ios/RNWebTests/RNWebTests.m -------------------------------------------------------------------------------- /src/jack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/jack.gif -------------------------------------------------------------------------------- /src/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/jsconfig.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/package.json -------------------------------------------------------------------------------- /src/web/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/web/.DS_Store -------------------------------------------------------------------------------- /src/web/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/web/dist/index.html -------------------------------------------------------------------------------- /src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-training/create-rn-web-app/HEAD/src/webpack.config.js --------------------------------------------------------------------------------