DEV Community

Discussion on: How to test your NPM package locally

Collapse
 
dailydevtips1 profile image
Chris Bongers

Thanks Andrew! This is a useful addition actually!
I would have thought NPM would resolve only one of the dependencies based on it's version checks it does.

Collapse
 
iamandrewluca profile image
Andrei Luca • Edited

Created a small demo here github.com/iamandrewluca/example-n...

cd npm-calculator
npm install
cd ../npm-calculator-test
npm install
node index.js
Enter fullscreen mode Exit fullscreen mode

Outputs

17.0.2
16.14.0
Enter fullscreen mode Exit fullscreen mode