How would you import a specific version of a node module? I know in npm
you can do npm i [email protected]
But whats not what I’m looking for. I so far I have like this:
// File 1
const fetch = require('[email protected]');
// File 2
const fetch = require('[email protected]');
Any help would be appreciated. Thank you.