
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@1productaweek/react-virtualized-grid
Advanced tools
Virtualized grid based on React Virtulalized. Uses @emotion for styling.
yarn add @1productaweek/react-virtualized-grid
import React from 'react'
import Grid from '@1productaweek/react-virtualized-grid'
const columns = [
{ key: 'id', title: 'ID', editable: true, width: 40, icon: Icon },
{ key: 'title', title: 'Title', editable: true },
{ key: 'complete', title: 'Complete', editable: true, width: 300 },
{ key: 'success', title: 'Success', width: 100 },
{ key: 'started', title: 'Started At', width: 100 },
{ key: 'custom', title: 'Custom', component: () => <div>Custom!</div> },
]
const rows = [
{ id: 10, title: 'Task 1', complete: 20, success: true, started: new Date() },
{ id: 20, title: 'Task 2', complete: 40, success: true },
{ id: 30, title: 'Task 3', complete: 60, success: false },
{ id: 40, title: 'Task 4', complete: 20, success: true },
]
export default function Container () {
return (
<Grid
columns={columns}
rowCount={rows.length}
rowGetter={i => rows[i]}
/>
)
}
https://react-virtualized-grid.netlify.app
FAQs
Grid component, powered by React-Virtualized
We found that @1productaweek/react-virtualized-grid 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
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.