Load .env Files in Node.js: The Old and New built-in Way

node js env file support

Introduction Hello Friends, When developing Node.js applications that require configuration variables to be kept separate from the code, developers often create a .env file to store these variables. Traditionally, the popular approach has been to use the dotenv package to load these configuration variables. However, with the release of Node.js v20.6.0, the Node.js team has … Read more

How to use nvm to install multiple nodeJS versions on windows?

Hello Friends, If you are professional developer and using frameworks/libraries which uses NodeJS, you may come to a situation like you want to install multiple Node js on your development environment and use one at a time when need, This situation may also happens when you are working on a multiple versions of same product … Read more