Node and npm without sudo
When running npm and node, you may find yourself getting permission errors that ultimately lead you to using `sudo` in your commands. While this helps get around the issue in the short-term, it also places stricter permissions on those installs and it becomes a slippery slope where soon you may need sudo for more than you bargained for. Also, do you really want to be using `sudo` to install npm packages? After discussing this with Tierney Cyren, we found a much easier way to get node and npm running on my mac than what I used to do a few years back. First, we want to use the official Node.js install. I mean, its official, right? And if we...