Installation
This page covers the installation procedure for the React adapter and AG Grid plugin.
Prerequisites
First of all, you need to have Node.js and NPM (or any other package manager) installed on your machine. If you haven’t installed them yet, please follow the instructions on the Node.js website to download and install the latest stable version.
Once you have Node.js and a package manager installed, you can proceed with the installation process below.
Adapter Package
Run the following command to install the React adapter package:
npm install @jsoc/react-gridPeer Dependencies
The @jsoc/react-grid package has following peer dependencies which also need to be installed:
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
}If you are using React, you probably have already installed the packages listed above. Just make sure their versions satisfy the peer dependencies above.
Plugin Package
Run the following command to install the AG Grid plugin package:
npm install @jsoc/react-grid-agPeer Dependencies
The @jsoc/react-grid-ag package has following peer dependencies which also need to be installed:
"peerDependencies": {
"ag-grid-community": "^35.0.0",
"ag-grid-react": "^35.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
}If you are using AG Grid in a React app, you probably have already installed the packages listed above. Just make sure their versions satisfy the peer dependencies above.