Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@visactor/react-vtable
Advanced tools
VTable is not just a high-performance multidimensional data analysis table, but also a grid artist that creates art between rows and columns.React-VTable is a React wrapper of VTable.
// npm
npm install @visactor/react-vtable
// yarn
yarn add @visactor/react-vtable
import React from 'react';
import ReactDOM from 'react-dom/client';
import { ListTable } from "@visactor/react-vtable";
const option = {
header: [
{
field: "0",
caption: "name",
},
{
field: "1",
caption: "age",
},
{
field: "2",
caption: "gender",
},
{
field: "3",
caption: "hobby",
},
],
records: new Array(1000).fill(["John", 18, "male", "๐"]),
};
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<ListTable option={option} height={'500px'}/>
);
More demos and detailed tutorials
Project | Description |
---|---|
AI-generated Components | AI-generated table component. |
If you would like to contribute, please read the Code of Conduct ๅ Guide firstใ
Small streams converge to make great rivers and seas!
FAQs
The react version of VTable
The npm package @visactor/react-vtable receives a total of 462 weekly downloads. As such, @visactor/react-vtable popularity was classified as not popular.
We found that @visactor/react-vtable demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 16 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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.