I frequently deploy Node.js applications to AWS Elastic Beanstalk (EB). This process usually involves...
Secure Coding is the art of writing codes with a security-first mindset. SecDevOps is such a...
What is GraphQL? Unlike the traditional RESTFUL architecture where an endpoint returns a s...
Linux Step 1: Installation $ sudo apt update $ sudo apt install postgresql po...
Elastic Beanstalk is the AWS platform-as-a-service that helps you deploy your code with ease. As a pl...
Sometimes you realize that you need to add some new fields to an existing sequelize migrations. This...
Slack is a virtual office. Businesses, teams, and companies rely on it for communications and for man...
2019 was unequivocally a good year. I contemplated whether I've got something worth writing about but...
Originally published in my blog Method chaining is a mechanism of calling a method on another meth...
Media Query is very important in building web applications that can display well across devices of di...
As software developers, GIT is a useful tool in the course of developments. In most occasions, we do...
Often time we do have needs of sending email in our Node.js application. The first option that comes...
This article was originally published on my blog In the previous article, we wrote end-to-end tests...
This is part three of building API using Express, Sequelize, and Postgres. In part two, we built simp...
In the part one of this article, we covered setting up Sequelize, creating migrations/models and seed...
Sequelize is a promise-based Node.js ORM for Postgres, MySQL, MariaDB, SQLite and Microsoft SQL Serve...
Passwords are not stored as plain text for obvious security reasons. There are several npm packages a...
Express validator is one of the many npm packages for validating a request an express application. I...
Docker is an open-source platform that makes it possible for software developers to Build, Ship, and...
This article outlines a step-by-step approach to hosting a Laravel App on Heroku. It also explains...
Express is a fast, unopinionated, minimalist web framework for Node.js - docs Error handling is a...