![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@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",
title: "name",
},
{
field: "1",
title: "age",
},
{
field: "2",
title: "gender",
},
{
field: "3",
title: "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 830 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 0 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.