Gathering detailed insights and metrics for @handsontable-pro/react
Gathering detailed insights and metrics for @handsontable-pro/react
Gathering detailed insights and metrics for @handsontable-pro/react
Gathering detailed insights and metrics for @handsontable-pro/react
React Data Grid with Spreadsheet Look & Feel. Official React wrapper for Handsontable.
npm install @handsontable-pro/react
Typescript
Module System
Node Version
NPM Version
TypeScript (95.47%)
JavaScript (4.53%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
519 Stars
118 Commits
82 Forks
23 Watchers
13 Branches
8 Contributors
Updated on Jun 19, 2025
Latest Version
2.1.1
Package Id
@handsontable-pro/react@2.1.1
Unpacked Size
47.43 kB
Size
9.10 kB
File Count
10
NPM Version
6.4.1
Node Version
8.11.3
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
:warning: This package is deprecated.
Handsontable Pro for React is now available as @handsontable/react
.
Handsontable Pro for React is the official wrapper for Handsontable Pro, a commercial data grid component with a spreadsheet look & feel. It easily integrates with any data source and comes with lots of useful features like data binding, validation, sorting or powerful context menu.
Use npm to download the project.
1npm install handsontable-pro @handsontable-pro/react
Assuming that you have installed the wrapper with npm, now you just need to include Handsontable styles into your build system and use <HotTable>
just like any other React component.
Styles
1@import 'handsontable-pro/dist/handsontable.full.css';
React Component
1import React from 'react'; 2import ReactDOM from 'react-dom'; 3import { HotTable } from '@handsontable-pro/react'; 4 5class HotApp extends React.Component { 6 constructor(props) { 7 super(props); 8 this.data = [ 9 ["", "Ford", "Volvo", "Toyota", "Honda"], 10 ["2016", 10, 11, 12, 13], 11 ["2017", 20, 11, 14, 13], 12 ["2018", 30, 15, 12, 13] 13 ]; 14 } 15 16 render() { 17 return ( 18 <div id="hot-app"> 19 <HotTable data={this.data} colHeaders={true} rowHeaders={true} width="600" height="300" stretchH="all" /> 20 </div> 21 ); 22 } 23}
Visit docs.handsontable.com to get more Handsontable for React examples and guides.
The list below gives a rough idea on what you can do with Handsontable Pro, but it shouldn't limit you in any way:
Some of the most popular features include:
After you buy the license for Handsontable Pro, you should receive a license key of your copy of the software. It will be available in your account at my.handsontable.com.
Paste your license key to the configuration section, just like in the example below.
1const settings = { 2 data: data, 3 rowHeaders: true, 4 colHeaders: true, 5 licenseKey: '00000-00000-00000-00000-00000' 6};
Note that the license key is passed as a string so you need to wrap it in quotes ('').
If you have a valid license of Handsontable Pro then your primary contact is through support team at support@handsontable.com
You can also report your issues here on GitHub.
If you would like to help us to develop this wrapper for React, please read the guide for contributors first.
This wrapper is released under the MIT license but under the hood it uses Handsontable Pro, which is a commercial and paid software. You need to purchase a license in order to use it in production environment.
Copyrights belong to Handsoncode sp. z o.o.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 10/30 approved changesets -- score normalized to 3
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
36 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