
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
simple-virtual-list
Advanced tools
A simple and basic React virtual list to display large amount of data efficiently.
Using npm:
$ npm install simple-virtual-list
Using bower:
$ bower install simple-virtual-list
Using yarn:
$ yarn add simple-virtual-list
Using jsDelivr CDN:
<script src="https://cdn.jsdelivr.net/npm/simple-virtual-list/index.js"></script>
Using unpkg CDN:
<script src="https://unpkg.com/simple-virtual-list/index.js"></script>
Test it on codesandbox.
import React from 'react';
import SimpleVirtualList from 'simple-virtual-list';
const data = [];
for (let i = 0; i < 500; i++) {
data.push({ id: i + 1, title1: 'title - ' + (i + 1) });
}
const DemoApp = (props) => {
return (
<div style={{ height: '200px', width: '200px' }}>
<SimpleVirtualList
datasource={data} // mandatory
rowHeight={21} // optional
itemKey={'id'} // optional
display={'title1'} // mandatory if there is no title key in records
renderItem={(item) => <span>{item.title1} </span>} // optional
/>
</div>
);
};
export default DemoApp;
FAQs
A simple and basic React virtual list
We found that simple-virtual-list demonstrated a not healthy version release cadence and project activity because the last version was released 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.