Try it out
This guide demonstrates how to quickly evaluate the library to determine its suitability for your project.
Repository
The first step is to clone the repository to your machine. Ensure you have followed the environment setup for at least React Native version 0.73.
git clone git@github.com:crherman7/rechunk.gitNext, navigate to the rechunk directory and install the dependencies using the Yarn package manager.
cd rechunkyarn installAfter installing the dependencies, the package needs to be built, which involves compiling TypeScript into JavaScript.
yarn buildApp
The example application can now be run successfully with the ReChunk development server. Before you can the iOS application, pods must be installed.
cd example/iospod installcd ..After all the pods have been installed, you can start the ReChunk development server.
yarn rechunk dev-serverIn a separate terminal the iOS application can now be run.
yarn iosThe iOS mobile application should now be running and the remote chunk should be rendered. This can also be run for android as well.
yarn android