Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@decathlon/react-table
Advanced tools
React components for efficiently rendering large tabular data
React components for efficiently rendering large tabular data
A table with 15 000 rows and 1 000 columns (with sub rows, fixed rows and fixed columns)
A table with custom right click menu
npm install -S @decathlon/react-table
import { Table } from "@decathlon/react-table";
import "@decathlon/react-table/dist/style/index.css";
const rows = [
{
id: "header",
isHeader: true,
cells: [
{
id: "wawoo",
value: "Wawooo!"
},
...
]
},
{
id: "row1",
cells: [
{
id: "react",
value: "React"
},
...
]
},
...
];
function MyComponent() {
return (
<Table
id="table-id"
rows={rows}
columns={{ 0: { style: { justifyContent: "left" }, size: 200 } }}
isVirtualized
virtualizerProps={{
fixedRows: [0],
fixedColumns: [0],
height: 500,
width: 1000
}}
/>
);
}
git clone ...
cd react-table
npm ci
npm run storybook
🚀 Storybook ready at http://localhost:9001/
npm run test
npm run lint
PRs are welcome! You noticed a bug, a possible improvement or whatever? Any help is always appreciated, so don't hesitate opening one!
Be sure to check out the contributing guidelines to fasten up the merging process.
See also the list of contributors who participated in this project.
This project is licensed under the Apache-2.0 License - see the LICENSE.md file for details
FAQs
React components for efficiently rendering large tabular data
The npm package @decathlon/react-table receives a total of 2 weekly downloads. As such, @decathlon/react-table popularity was classified as not popular.
We found that @decathlon/react-table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.