DEV Community

Discussion on: npm workspaces: npm run and exec

Collapse
 
klvenky profile image
Venkatesh KL

For projects which have a bunch of small & isolated utilities which can be used together as a single project or be used as a standalone module.
Ex:lodash.
You can install a small part of lodash alone using
npm install loadash/uniq
Instead of installing entire lodash library.

Collapse
 
spic profile image
Sascha Picard

Thanks for elaborating!