Debugging NodeJS using VS Code
In a previous article I wrote about NodeJS async and await, in which I used real world working examples and wrote/tested all code shown in the article as I was writing. While digging into these concepts I quickly realized that while writing code examples of any kind, I was going to need a debugger. VS Code Debugging I use VS Code to do 90% of all of my development, with VI being the other 10%. Continue readingQuick Promises with NodeJS
Typically in NodeJS version 7.6 and later instead of using promise chaining and callback functions, or as this is commonly referred to as callback hell we can now use async and await. In this article I’ll show you my two favorite go-to patterns to utilize Promises in Javascript.
Continue readingManaging AWS CLI Accounts
If you have multiple AWS accounts that you would like to access using the AWS CLI tools then you will need an easy way to switch between accounts before running any CLI commands. AWS Named Profiles offers an easy way to manage CLI access to your different AWS accounts.
Continue readingTwitter Cards
I have been working on this blog for a few months now, and am really starting to like the progress that I am making with blogging in general. Its a great way to communicate my thoughts in the wide world of web dev. So I thought Hey! I’m going to post a blog post on Twitter!
So I copied the link and sent out to the masses. Low and behold, a tweet for my blog:
Continue readingLambda Layers
Lambda layers allow you to pull in custom code and content into your Lambda functions. This is a great tool for NodeJS dependencies that are managed via NPM.
Continue reading