I am a web developer. I checkout many OSS projects and build them. Node modules are notorious in creating too many small files. I am running out of free iNodes because of that. I want an easy way (in linux) to lookup for all node_modules and delete unwanted ones. I am using the below command to list all node_modules directory and then delete them manually. 
find ~/projects -name node_modules -prune
Is there a first-class utility that provides better way to manage node_modules?
 
     
    