Gathering detailed insights and metrics for tmp-hot-react
Gathering detailed insights and metrics for tmp-hot-react
Gathering detailed insights and metrics for tmp-hot-react
Gathering detailed insights and metrics for tmp-hot-react
JavaScript Data Grid / Data Table with a Spreadsheet Look & Feel. Works with React, Angular, and Vue. Supported by the Handsontable team ⚡
npm install tmp-hot-react
Typescript
Module System
Node Version
NPM Version
JavaScript (92.68%)
TypeScript (5.59%)
SCSS (1.14%)
CSS (0.37%)
Vue (0.2%)
EJS (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
21,173 Stars
8,847 Commits
3,167 Forks
457 Watchers
158 Branches
136 Contributors
Updated on Jul 11, 2025
Latest Version
0.0.0-next-24ebe76-20221024
Package Id
tmp-hot-react@0.0.0-next-24ebe76-20221024
Unpacked Size
513.90 kB
Size
148.61 kB
File Count
18
NPM Version
8.5.5
Node Version
16.15.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
34
Handsontable's wrapper for React combines data grid features with spreadsheet-like UX.
It provides data binding, data validation, filtering, sorting, and CRUD operations.
The most popular features of Handsontable for React:
✓ Multiple column sorting
✓ Non-contiguous selection
✓ Filtering data
✓ Export to file
✓ Validating data
✓ Conditional formatting
✓ Merging cells
✓ Freezing rows/columns
✓ Moving rows/columns
✓ Resizing rows/columns
✓ Hiding rows/columns
✓ Context menu
✓ Comments
Run the following command in your terminal
npm install handsontable @handsontable/react
You can load it directly from jsDelivr as well.
1<script src="https://cdn.jsdelivr.net/npm/handsontable/dist/handsontable.full.min.js"></script> 2<script src="https://cdn.jsdelivr.net/npm/@handsontable/react/dist/react-handsontable.min.js"></script> 3 4<link href="https://cdn.jsdelivr.net/npm/handsontable/dist/handsontable.full.min.css" rel="stylesheet">
The component will be available as Handsontable.react.HotTable
.
Use this data grid as you would any other component in your application. Options can be set as HotTable
props.
Styles
1@import '~handsontable/dist/handsontable.full.css';
React Component
1import React from 'react'; 2import ReactDOM from 'react-dom'; 3import { HotTable } from '@handsontable/react'; 4 5class HotApp extends React.Component { 6 constructor(props) { 7 super(props); 8 this.data = [ 9 ['', 'Tesla', 'Mercedes', 'Toyota', 'Volvo'], 10 ['2019', 10, 11, 12, 13], 11 ['2020', 20, 11, 14, 13], 12 ['2021', 30, 15, 12, 13] 13 ]; 14 } 15 16 render() { 17 return (<HotTable data={this.data} colHeaders={true} rowHeaders={true} width="600" height="300" />); 18 } 19}
We provide support for developers working with commercial version via contact form or at support@handsontable.com.
If you use a non-commercial version then please ask your tagged question on StackOverflow.
Handsontable is a commercial software with two licenses available:
If you use Handsontable for React in a project that supports your commercial activity, then you must purchase the license key at handsontable.com.
If you use the free for non-commercial license of Handsontable, then pass the phrase 'non-commercial-and-evaluation'
, as described in this documentation.
Proudly created and maintained by the Handsontable Team.
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
packaging workflow detected
Details
Reason
no binaries found in the repo
Reason
SAST tool is run on all commits
Details
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
Found 11/30 approved changesets -- score normalized to 3
Reason
badge detected: InProgress
Reason
dangerous workflow patterns detected
Details
Reason
security policy file not detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
project is not fuzzed
Details
Reason
75 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More