Searching files in terminal and node_modules is making my life extremely uncomfortable.<p>Project directory looks like so:<p><pre><code> project/
├── index.html
├── node_modules
├── js/
│ └── scripts.js
└── style.css
</code></pre>
I find myself using `find . | xargs grep "text string"` to search the project directory.<p>I want to ignore everything in node_modules all of the time.<p>I'm familiar with --prune and ignoring, etc.. but I want something like an alias in my .profile that ALWAYS ignores the contents of node_modules.<p>I've looked around, but I just don't know if I'm asking the question correctly.<p>Anyone have any solutions?