Thursday, March 23, 2023
HomeReactGet rid of node_modules Recursively by Aman Mittal

Get rid of node_modules Recursively by Aman Mittal


Get rid of node_modules Recursively

Released on Sep 10, 2017

•

2 minutes read

•

node_modules have a tendency to take a great deal of area in your neighborhood system specifically if you collaborate with Node.js or associated structures (such as customer side structures: Respond or Angular). They are the component contemporary JavaScript applications as well as operations.

Every day npm computer system registry is navigating 350 million downloads daily, at the existing time of composing this blog post. That’s virtually 2.2 billion downloads weekly as well as you can take the computation additionally.

Right here’s Laurie Voss ( @seldo) tweet, sharing the previously mentioned information:

However, nevertheless your initiatives are paid of as well as every little thing is released as well as mores than cloud, either Github or some implementation solution you or your customer favors, I believe it will certainly be charitable to eliminate node_modules that take valuable area on our neighborhood makers (specifically, Mac customers with restricted GigaBytes of SSD).

There’s an easy command that you can run in your incurable either in a folder or from the origin.

locate -name " node_modules" -director rm -rf ' {} ' +

This will certainly erase node_modules folder in every neighborhood repository/directory that gets on your system so take safety measure or leave out those tasks that you are presently servicing.

Nonetheless, do not panic. Whatever can be back to typical simply by entering into the job’s directory site as well as running bundle setting up command:

I have actually utilized this command previously today it conserved me approximately 9 GB of area from neighborhood system over a number of tasks that I am presently not functioning or are currently on Github

I also changed node_modules with bower_components to do the exact same point:

locate -name " bower_components" -director rm -rf ' {} ' +


I’m a software program programmer as well as a technological author. In this blog site, I cover Technical composing, Node.js, Respond Indigenous as well as Exposition.

Presently, operating at Exposition. Formerly, I have actually functioned as a Designer Supporter, as well as Elderly Material Designer with business like Draftbit, Vercel as well as Crowdbotics.



RELATED ARTICLES

Most Popular

Recent Comments