Blog
How to install Node.js v14.x on Ubuntu 17.04
Even though you should be considering upgrading this interim release of Ubuntu, you can still leverage the latest version of Node.js to squeak just a bit more life out of it. Follow these quick and easy steps to install Node [...]
How to install Node.js v14.x on Ubuntu 16.10
You consider 2016 to be "your year" so you've been reluctant to upgrade from the last version of Ubuntu released that year. Even though it's well past end of life as an interim release, you can still run the latest [...]
How to install Node.js v14.x on Ubuntu 16.04 LTS
While not quite at end of life, Ubuntu 16.04 LTS is still working hard for some of us. Even on an aging workhorse, you can leverage the power of the latest and greatest version of Node.js. Follow these quick and [...]
How to install Node.js v14.x on Debian Testing
You're living life very close to the bleeding edge on Debian Testing, no reason to not run the latest version of Node.js. Follow these quick and easy steps to install Node.js v14.x on your Debian Testing system. Getting started Before [...]
How to install Node.js v14.x on Debian Sid
You're right on the bleeding edge of Debian, why not be on the bleeding edge with Node.js? Follow these quick and easy steps to get Node.js v14.x up and running on your Debian Sid / Unstable system. Getting started Before [...]
How to install Node.js v14.x on Debian 9
Just because you haven't made the jump to Debian 10 yet, doesn't mean you shouldn't enjoy the power of the latest and greatest version of Node.js. Follow these quick and easy steps and you'll be running Node.js v14 on Debian [...]
How to install Node.js v14.x on Debian 8
Debian 8 still has some long term support life left in it. While you're deciding on when to schedule your upgrade to Debian 9 or 10, why not give the latest version of Node.js a try? Follow these quick and [...]
How to install Node.js v14.x on Debian 10
Already running the latest and greatest version of Debian, version 10, and want to run the latest and greatest version of Node.js? If so, follow these quick and easy steps and you'll be off to the races with Node.js v14.x [...]
Recursive functions in TypeScript
In working with the Slate framework for building rich text editors recently, I found myself faced with a scenario where I needed to loop through the editor's value. The value that comes out the editor is an array of objects [...]
Recursive types and interfaces in TypeScript
When writing out a type or interface in TypeScript for something that will be fed into a recursive function you could cop out and use any or you could properly define the structure. Fortunately, both type and interface allow you [...]