
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-spreadsheet-cell
Advanced tools
Excel-like spreadsheet grid for React featuring keyboard navigation, multi-cell selection, copy and paste, and customizable cells.
Excel-like spreadsheet component for React with full keyboard navigation, multi-cell selection, copy/paste support, and high customization.
Perfect for building data-heavy, professional user interfaces inside your application.
npm install react-spreadsheet-cell
View Live Documentation & Examples →
import { SpreadsheetCellProvider, SpreadsheetCell } from 'react-spreadsheet-cell';
import 'react-spreadsheet-cell/styles.css';
function App() {
const [cells, setCells] = useState({});
return (
<SpreadsheetCellProvider>
<div className="grid grid-cols-3">
{[...Array(9)].map((_, i) => (
<SpreadsheetCell
key={i}
cellId={`0-${i}`}
row={0}
col={i}
initialValue={cells[`0-${i}`] || ''}
onValueChange={(value) =>
setCells(prev => ({ ...prev, [`0-${i}`]: value }))
}
/>
))}
</div>
</SpreadsheetCellProvider>
);
}
| Prop | Type | Description |
|---|---|---|
cellId | string | Unique ID (format: "row-col") |
row | number | Row number |
col | number | Column number |
initialValue | string | Initial value |
cellType | 'text' | 'number' | 'select' | Cell type |
colorScheme | 'blue' | 'purple' | 'green'... | Color scheme |
onValueChange | (value: string) => void | Callback on change |
MIT
TKSOHLT - @TKSOHLT
FAQs
Excel-like spreadsheet grid for React featuring keyboard navigation, multi-cell selection, copy and paste, and customizable cells.
We found that react-spreadsheet-cell 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.