nodejs
3 articles tagged “nodejs”
Blog
December 1, 2022
Load more .env Files for Different Environments using NodeJS
Environment variables are variables that are set outside of a program. Using a .env file for keeping secrets (that we don’t want accidentally leaked out) is standard…
Blog
November 2, 2022
Email Reminder Notifications with Nodejs, Mongodb and Cron Jobs
NodeJS applications mostly use the nodemailer module for simple email sending. An essential item of sending emails using the nodemailer module is creating a transporter for sending…
Blog
May 19, 2020
Remote VS Code debugging of Typescript NodeJS app deployed in Kubernetes
Today's apps are usually deployed as Docker containers on remote machines and, as such, can be a bit challenging to develop and debug. In order…