![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-intersection-loader
Advanced tools
Lazy load your components only when they're visible.
import { intersectionLoader } from 'react-intersection-loader';
// This will be imported (lazy loaded) only when the user is about to see it.
const MyComponent = intersectionLoader(() => import('./MyComponent'));
export default function App() {
return (
<div>
<div
style={{
width: '100vw',
height: '100vh',
}}
>
<h1>I am a viewport size</h1>
</div>
<MyComponent />
</div>
);
}
Since this uses react, support verity of use cases is a most.
Currently only supported with hooks, react >=16.8.0
Full support of SSR and hydration!
Testing is a top priority. Therefore I created fixtures with various use-cases of projects that use this library.
You can check it out here.
I build the fixtures using webpack, serve them and test them with playwright.
npm i react-intersection-loader
or
yarn add react-intersection-loader
FAQs
Load react component lazily when the component is visible
The npm package react-intersection-loader receives a total of 6 weekly downloads. As such, react-intersection-loader popularity was classified as not popular.
We found that react-intersection-loader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.