In order to see all the versions of a node module [webpack], I have executed below command in windows command prompt
npm view webpack versions
This command only displays first 100 versions and later displays "331 more" text.
How will I be able to list all versions?
node modules
.stackoverflow.com/questions/13981938/… – Heartbitnpm ls --depth=0
will list all local modules asname@version
. ` – Heartbitnpm -g ls --depth=0
. – Heartbit