EN
React - how to check react-router version?
2
answers
0
points
Do you know how to check the version of react-router
in my project?
2 answers
0
points
I found the solution:
Every package version is stored in the package.json file.
Go to: projectPath/package.json and search for "react-router".

0 comments
Add comment
0
points
You can also use npm:
npm list --depth=0
The above command will return a list of locally installed packages (without displaying their dependencies).
0 comments
Add comment