Any tricks to install multiple versions of the same node package
npm install [email protected]
npm install [email protected]
and later access them by different imports
import package1 from "package@1:0:0"
import package2 from "package@2:0:0"
Any tricks to install multiple versions of the same node package
npm install [email protected]
npm install [email protected]
and later access them by different imports
import package1 from "package@1:0:0"
import package2 from "package@2:0:0"
No. It will simply update the version that you're already have.