How to check the React-native Version
In this tutorial, we are going to learn about how to check the (currently) installed version of React native in your system.
Checking the version
To check the react-native version in your system, run the react-native -v command inside the terminal.
react-native -vIt will print output like this:
react-native-cli: 2.0.1
react-native: 0.63.3This above command work on both mac and windows based operating systems.
Similarly, you can also check the react-native version by opening a package.json file in your project.
{
"name": "react-native",
"version": "0.63.0",
}

