
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
gridjs-react
Advanced tools
React component for Grid.js
npm install --save gridjs-react
Also, make sure you have Grid.js installed already as it's a peer dependency of gridjs-react
:
npm install --save gridjs
Import the Grid component first:
import { Grid } from "gridjs-react";
<Grid
data={[
['John', 'john@example.com'],
['Mike', 'mike@gmail.com']
]}
columns={['Name', 'Email']}
search={true}
pagination={{
enabled: true,
limit: 1,
}}
/>
Then you can pass all Grid.js configs to the Grid
component. See Grid.js Config for more details.
You can bind your React components or elements in Table cells (both in header and body cells).
Simply import the _
function and use it in data
, columns
or formatter
function:
import { Grid, _ } from "gridjs-react";
<Grid
data={[
[
_(<b>John</b>),
'john@example.com',
],
[
_(<MyReactComponent>Mike</MyReactComponent>),
'mike@gmail.com',
]
]}
columns={[
'Name',
{
name: 'Email',
formatter: (cell) => _(<i>{cell}</i>)
}
]}
search={true}
pagination={{
enabled: true,
limit: 1,
}}
/>
See the React example on Grid.js website.
MIT
FAQs
React component for Grid.js
The npm package gridjs-react receives a total of 7,976 weekly downloads. As such, gridjs-react popularity was classified as popular.
We found that gridjs-react 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.