Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
react-object-table
Advanced tools
React powered table of objects, designed to be editable and fast.
React powered table of objects, designed to be editable and fast.
Check out the live demo here: http://uptick.github.io/react-object-table/
Install the package with npm:
npm install react-object-table
Then require and use with ES6 imports:
import React from 'react'
import ReactDom from 'react-dom'
import ObjectTable from 'react-object-table'
var mount = document.querySelectorAll('div.table-mount');
ReactDom.render(
<ObjectTable
columns={[
{
name: 'Message',
key: 'message',
}
]}
objects={[
{
id: 1,
message: 'Hello world',
}
]}
/>,
mount[0]
);
Optionally, include the built css with an import:
@import 'node_modules/react-object-table/dist/react-object-table.css';
or tag:
<link href="static/node_modules/react-object-table/dist/react-object-table.css" rel="stylesheet">
Full reference documentation coming soon. For now, take a look at the reference on the live demo at http://uptick.github.io/react-object-table/.
FAQs
React powered table of objects, designed to be editable and fast.
The npm package react-object-table receives a total of 33 weekly downloads. As such, react-object-table popularity was classified as not popular.
We found that react-object-table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.