Author name: admin

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 »

NodeJS Package Manager

In this article, you will learn about the NodeJS Package Manager. Node JS is based on Javascript and its main worth is due to the large number of packages bundled in it. To manage all these packages, a separate service help NPM helps to perform the following two main functionalities. Functionalities of NPM in Node …

NodeJS Package Manager Read More »

Scroll to Top