Is there a way to install and also use the different package versions in npm? Installations works:
npm install -g packagename@2.8
npm install -g packagename@3.1
npm install -g packagename@4.0
I can install npm install -g web3@0.20.7 and check npm view web3 versions them. But how can I use them in the *.js script? Something like this:
require('packagename@2.8');
require('packagename@3.1');
require('packagename@4.0');