
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
A lightweight, customizable data grid for React — like MUI DataGrid
datacomb is a lightweight, highly customizable and feature-rich data grid component built for modern React applications. Designed with flexibility and performance in mind, datacomb supports powerful data display capabilities like sorting, filtering, exporting, editing, pagination, and virtual scrolling.
npm install datacomb
or with Yarn:
yarn add datacomb
import React from "react";
import datacomb from "datacomb";
const config = {
header: {
title: "Consumer Prepayment History",
search: "http://abc.5120....",
showRefresh: true,
filter: {
date: ["last day", "last week", "last month", "last year", "custom"],
type: {
Name: "KUNNUMAL",
"Account No": "1166011019605",
},
},
export: {
pdf: "http://abcde/pdf",
excel: "http://abcde/excel",
csv: "http://abcde/csv",
json: "http://abcde/json",
},
},
columns: [
{ label: "Account No", name: "accountNo", level: 1 },
{ label: "Meter No", name: "meterSerialNumber", level: 1 },
{ label: "Name", name: "name", level: 1 },
{ label: "Mobile", name: "mobile", level: 1 },
{ label: "Balance", name: "balance", level: 1 },
],
rows: {
data: [
{
accountNo: "1166011019605",
meterSerialNumber: "Z00042050",
name: "KUNNUMAL DTR",
mobile: "9200490904",
balance: "₹240.00",
},
{
accountNo: "1166011019611",
meterSerialNumber: "Z00042051",
name: "THIRUVAMBADY",
mobile: "9876543210",
balance: "₹110.00",
},
],
api: {
endpoint: "/api/prepayment/history",
method: "GET",
},
},
pagination: {
enabled: true,
pageSizeOptions: [10, 25, 50, 500, 1000],
defaultPageSize: 25,
clientSide: true,
},
options: {
wrapperStyle: {
borderRadius: "8px",
backgroundColor: "#ffffffff",
boxShadow: "0 2px 8px rgba(0,0,0,0.1)",
padding: "10px",
},
headerStyle: {
backgroundColor: "teal",
color: "yellow",
padding: "10px",
borderRadius: "8px",
},
columnStyle: {
backgroundColor: "#b3ffecff",
fontWeight: "bold",
padding: "10px",
},
rowStyle: {
backgroundColor: "#ffffff",
},
footerStyle: {
backgroundColor: "teal",
textAlign: "right",
padding: "2px",
paddingInline: "10px",
},
},
features: {
sortable: true,
filterable: true,
editable: true,
selectable: true,
virtualScroll: true,
},
callbacks: {
onRowClick: (row) => console.log('Clicked row:', row),
onDataLoad: (data) => console.log('Loaded data:', data)
},
};
const App = () => {
return (
<div style={{ padding: "20px" }}>
<datacomb config={config} />
</div>
);
};
export default App;
Change colors, borders, spacing, and behavior using the options
field in the config object. Style each section—header, columns, rows, footer—to match your theme.
Use powerful callbacks like:
onRowClick: (row) => console.log("Clicked row:", row),
onDataLoad: (data) => console.log("Loaded data:", data)
Feel free to fork this project and open pull requests or issues. Suggestions and improvements are always welcome!
MIT License © 2025 Biswajeet Mishra
FAQs
A lightweight, customizable data grid for React — like MUI DataGrid
The npm package datacomb receives a total of 0 weekly downloads. As such, datacomb popularity was classified as not popular.
We found that datacomb demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.