Reputation: 1241
How to find the current/latest available version and subversion of react native from the web? 0.41.0, 0.41.1, 0.41.2
etc
Not this react-native --version
, as this finds the version of the current project.
Upvotes: 0
Views: 169
Reputation: 9701
You can try: npm show react-native version
. The current result is
0.41.2
Upvotes: 2