One of the difficulties with developing hybrid apps is passing data between views and persisting information between app sessions. Minimongo is an implementation of a MongoDB like database that can run within the browser. The database can be stored in memory, in IndexedDB (browser based storage), or persisted with SQLite using the Cordova plugin for…
Category: HTML/Javascript
One of the downsides to working with React Native is that react native provides access to only a small fraction of the APIs available on iOS and Android forcing developers to create native wrappers for missing APIs. Tal Kol of Wix has created a great library to help remedy this utilizing reflection to allow you…
React Game Kit is an open source library providing a number of functions that simplify game creation with React Native. With React Game Kit you can easily manage the game loop, draw sprites, create animations, and add physics. There is also support for tilemaps defined with a simple array syntax. You can find React Game…
React Native Navigation is a library that provides UI components for React Native with navigation solution that works cross-platform between iOS and Android. You can style the navigator and the tab bar, and add buttons to the navigator. There is also support for deep linking into different pages provided with the navigator component. This animation…
Live is an open source Swift and Javascript based source code example from Leo showing how to create a live broadcasting app. Live shows how to set up an Nginx with RTMP and WebSocket to communicate between the server and client with both the server-side, and client side code included. Live features live streaming, and…