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.git
Next, navigate to the rechunk
directory and install the dependencies using the Yarn package manager.
cd rechunkyarn install
After installing the dependencies, the package needs to be built, which involves compiling TypeScript into JavaScript.
yarn build
App
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-server
In a separate terminal the iOS application can now be run.
yarn ios
The 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