├── .gitattributes ├── .gitignore ├── README.md ├── app.json ├── index.ios.js ├── ios ├── PouchAlbum.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── PouchAlbum-tvOS.xcscheme │ │ └── PouchAlbum.xcscheme └── PouchAlbum │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── NodeRunner.hpp │ ├── NodeRunner.mm │ └── main.m ├── nodelibs └── ios │ └── nodeLib.framework │ ├── Headers │ └── node.hpp │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── nodeLib ├── nodeproj ├── main.js ├── npm-shrinkwrap.json └── package.json ├── npm-shrinkwrap.json └── package.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/app.json -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/PouchAlbum.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/PouchAlbum.xcodeproj/xcshareddata/xcschemes/PouchAlbum-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum.xcodeproj/xcshareddata/xcschemes/PouchAlbum-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/PouchAlbum.xcodeproj/xcshareddata/xcschemes/PouchAlbum.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum.xcodeproj/xcshareddata/xcschemes/PouchAlbum.xcscheme -------------------------------------------------------------------------------- /ios/PouchAlbum/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum/AppDelegate.h -------------------------------------------------------------------------------- /ios/PouchAlbum/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum/AppDelegate.m -------------------------------------------------------------------------------- /ios/PouchAlbum/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/PouchAlbum/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/PouchAlbum/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum/Info.plist -------------------------------------------------------------------------------- /ios/PouchAlbum/NodeRunner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum/NodeRunner.hpp -------------------------------------------------------------------------------- /ios/PouchAlbum/NodeRunner.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum/NodeRunner.mm -------------------------------------------------------------------------------- /ios/PouchAlbum/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/ios/PouchAlbum/main.m -------------------------------------------------------------------------------- /nodelibs/ios/nodeLib.framework/Headers/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/nodelibs/ios/nodeLib.framework/Headers/node.hpp -------------------------------------------------------------------------------- /nodelibs/ios/nodeLib.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/nodelibs/ios/nodeLib.framework/Info.plist -------------------------------------------------------------------------------- /nodelibs/ios/nodeLib.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/nodelibs/ios/nodeLib.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /nodelibs/ios/nodeLib.framework/nodeLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/nodelibs/ios/nodeLib.framework/nodeLib -------------------------------------------------------------------------------- /nodeproj/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/nodeproj/main.js -------------------------------------------------------------------------------- /nodeproj/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/nodeproj/npm-shrinkwrap.json -------------------------------------------------------------------------------- /nodeproj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/nodeproj/package.json -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaneaSystems/node-mobile-react-demo/HEAD/package.json --------------------------------------------------------------------------------