In this video, we'll use create-react-app to, well, create a React app!
You can use this command:
npx create-react-app react-gs
(npx comes with npm 5.2+ and higher, see instructions for older npm versions.)
Open the react-gs
folder in your favorite editor (I use Visual Studio Code).
You should be able to run npm start
and see a browser window open to localhost:3000
.
Now, install ag-Grid using your terminal:
npm install --save ag-grid-community ag-grid-react
That's it! In the next video, we'll see how to use ag-Grid with some basic data.