NestJS Starter Kit, Monstarlab edition
TL;DR: We built a Node.js backend starter kit based on NestJS Framework. It follows a Monolithic architecture and implements REST APIs. The starter kit is completely open source and can be found at this Github Repo. Introduction Monstarlab is a product de...
How to use Firebase Cloud functions to send push notifications
This article provides a quick introduction on how to use Firebase Cloud Functions to send push notifications. There are 2 main advantages in using them: A small amount of code can send iOS and Android push notifications at the same time. There is no need...
NestJS, Your Angular Window to Server-side Programming
The role of a software developer is getting more open-ended with time. They are more of a “Fire Fighter Developer” if not anything else. Developers need to be constantly vigilant, doing more than what they are asked for, especially when some teams need he...
Deploying Node.js apps in Amazon Linux with pm2
Running a Node.js application can be as trivial as node index.js, but running it in production and keeping it running are completely different. Whenever the application crashes or the server reboots unexpectedly, we want the application to come back alive...