📄️ Bundle analysis
More often you need to understand how much space you can save using this library. The simplest way for performing this - compare files size. But it's a pretty routine task. So you can save a little bit time and get great bundle analytics using such tools as visualize-bundle and react-native-bundle-visualizer
📄️ Capturing startup time
The main purpose of this package is splitting bundle by two parts: the first, relatively small which you can load at the start of your application, and the second, where you will keep the rest part of your application. Such way allows significantly decrease initial startup time and practically reduce it to the same time as in an empty application created via react-native init command. Let's look how we can capture the startup time of an application and understand, how much did you win with the usage of this library.
📄️ Jest testing guide
This library doesn't require any mocks. However unit tests are running in Node.js runtime and dynamic import statement doesn't work out-of-box. To make your tests running again you'll need to add dynamic-import-node plugin for test environment and modify your babel.config.js or .babelrc files accordingly.