Frameworks and Libraries

ExpressJS for NodeJS: A Fast and Minimalist Web Framework

ExpressJS for NodeJS is a lightweight web framework. It offers a comprehensive set of functionality for online and mobile apps. ExpressJS is an excellent solution for both developers and companies due to its tiny and versatile core. Installing ExpressJS To install ExpressJS, use npm to install the framework (Node Package Manager). To install it, use …

ExpressJS for NodeJS: A Fast and Minimalist Web Framework Read More »

Node.js Environment Variables

Node.JS environment variables are values unique to the environment in which the program runs. They are helpful for storing sensitive information such as database credentials, API keys, and other application configuration parameters that should not be hard-coded. This post will go through using environment variables in a Node.js application. Accessing Environment Variables Environment variables are …

Node.js Environment Variables Read More »

Authentication API with JWT Token in Node.js Part 1

In this tutorial, we’ll learn how to build authentication API with jwt token in node js to secure endpoints and even authenticate users. Writing code and developing applications is quite simple, but security is always a concern when it comes to efficient apps. So, without wasting much time, let’s start together. What is Authentication and …

Authentication API with JWT Token in Node.js Part 1 Read More »

Scroll to Top