how to install a secific version of a library npm code example
Example 1: install exact version npm
npm install <package>@<version>
//example
npm install [email protected]
Example 2: node install specific version
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash