How do I choose the version of a library I want to use with NPM?
For example
1.0.0
1.0.1
1.1.0
1.1.1
1.2.0
If I run npm i nome-do-package
, it will install the 1.2.0
version, because it is the last one.
But how would I install the version 1.1.0
of the package, since, whenever I install, does the latest version come?