How to Update NPM on Windows 10

The NPM team officially recommends this method of updating Node. (source below) Let’s begin. First, open PowerShell as administrator and run the following command. Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force npm install -g npm-windows-upgrade npm-windows-upgrade You will be prompted to select a version of NPM to install. Use arrow keys to move up and down and […] Read more

How to Install HTTP/2 with WHM and EasyApache 4

Recently I updated my server to enable HTTP/2 via mod_http2 from EasyApache 4 and the results are amazing, this has been something I have kept my eye on for quite some time. So now I will show you how to update your server and you too can benefit from HTTP/2. How to Enabled HTTP/2 with EasyApache 4 […] Read more

How to enable the Protocol Tab in Chrome Dev Tools

By default, Chrome shows you limited network tabs. With the recent implementation of HTTP/2, I needed a quick way to identify which protocol was in use. So here is a quick tutorial to show you how. Navigate to the Network tab in Chrome Dev tools and right click on one of the column headers, a […] Read more