EN
React - how to check react-router version?
2
answers
3
points
Do you know how to check the version of react-router
in my project?
2 answers
3
points
Every package version is stored in the package.json
file.
Simple steps:
- go to
project-path/package.json
, - search for
react-router
.

0 comments
Add comment
3
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