The future of React async components, today.
- Same code on server and client, handling SSR transparently
- Priority support, allowing per-phase loading
- Customisable deferred loading and phases definition
- Preloading support
- Works with both React.render() and React.hydrate()
npm i react-loosely-lazy
# or
yarn add react-loosely-lazy
import { lazy, LazySuspense } from 'react-loosely-lazy';
const AsyncMyComponent = lazy(() => import('./MyComponent'));
const App = () => (
<LazySuspense fallback="...">
<AsyncMyComponent />
</LazySuspense>
);
import { lazy, LazySuspense } from 'react-loosely-lazy';
const AsyncMyComponent = lazy(() => import('./MyComponent'), {
ssr: false,
});
const App = () => (
<LazySuspense fallback={<MyComponentSkeleton />}>
<AsyncMyComponent />
</LazySuspense>
);
import { lazyForDisplay, useLazyPhase, LazySuspense } from 'react-loosely-lazy';
const AsyncMyComponent = lazyForDisplay(() => import('./MyComponent'));
const App = () => {
const { setPhaseDisplay } = useLazyPhase();
// eg start loading MyComponent after the app is mounted
useEffect(() => {
setPhaseDisplay();
}, [setPhaseDisplay]);
return (
<LazySuspense fallback="...">
<AsyncMyComponent />
</LazySuspense>
);
};
import { lazy, LazyWait, LazySuspense } from 'react-loosely-lazy';
const AsyncMyComponent = lazyForInteraction(() => import('./MyComponent'));
const App = () => {
const [shouldLoad, setLoad] = useState(false);
return (
<>
<button onClick={() => setLoad(true)}>Load</button>
<LazyWait until={shouldLoad}>
<LazySuspense fallback={shouldLoad ? <MyComponentSkeleton /> : null}>
<AsyncMyComponent />
</LazySuspense>
</LazyWait>
</>
);
};
Check the docs website
or the docs folder.
See loosely-lazy in action: run npm run start
and then go and check: http://localhost:8080/
To test your changes you can run the examples (with npm run start
).
Also, make sure you run npm run preversion
before creating you PR so you will double check that linting, types and tests are fine.