15 Rules For Writing Clean JavaScript

blank

So you are a React developer or Node.js developer. You can write code that works. But can you write code that is visually beautiful and understandable by others? Today we will see some rules to make your JavaScript code clean and clear. Rule 1. Don’t Use Random Characters as Variable Don’t use some random character … Read more

Secure ReactJS Applicaiton on AWS

Secure ReactJS Applicaiton on AWS Security is very important for websites nowadays. Customers don’t feel confident providing their information on an unsecured website. If you have a React app served over S3 you can secure it very easily using AWS service. If you have an application that is hosted on S3 Bucket in AWS( Which … Read more

How to Build an NPM Package for React

To be a better React programmer I have a few tips for you … Write clean and small functional component DRY (Don’t repeat yourself) Separate logic from the view Reduce dependency among components Organise your files and folders Use custom hooks for repeated tasks Ask others for advice or get a review of your code … Read more

How to Design a Clean Database

18 best practices to keep names simple and consistent No matter what kind of developer you are, every once in a while, we come across an API which returns data in such a way that we don’t have to spend much time understanding it. But generating this type of clean and consistent result takes time, … Read more

Creating a CI/CD Pipeline for a NodeJS Application

What will we learn? Today we are going to set up a complete CI/CD pipeline for a NodeJS app using GitHub actions and Amazon web services (AWS). For this article, we are using the Nest.js framework. All of the processes will be exactly the same for any Node.js framework. (Like Express.js) Pre Requisites A GitHub … Read more

Dockerizing a basic Node.js/Nest.js application

Today we will Dockerize a Node.js application. We will use Nest.js for today. But the commands and processes are exactly the same for any Node.js application built by some other frameworks (like Express.js). What is Nest.js, and why are we using it? Nest.js is a progressive Node.js framework. There are so many ways to structure … Read more