Blogs
Save Yourself from …
We’ve all submitted a pull request to our team for review and at some point received feedback that we didn’t indent properly or missed a space or semi-colon. Not the type of feedback you want to hear. It can be embarrassing. In recent projects I’ve added a few new tools to my …
Debugging NodeJS with …
I use NodeJS for a lot of different things. It’s my go to for creating a robust API, simple automation, or any number of tasks. But debugging Node applications can be tricky, tedious, and slow. Applications become littered with console.log()’s everywhere. Chrome’s Developer Tools …
Variables in package.json
As a general rule of thumb, anytime I have to declare something more than a couple of times or change a value regularly I look to create a variable to hold that value. It helps me to be consistent and reduce errors. It’s not often but sometimes my package.json could benefit from variables. …