Posts tagged: Javascript
4 articles found

Set Up CI/CD for Your Node.js App Using GitHub Actions and PM2
🚀 Set Up CI/CD for Your Node.js App Using GitHub Actions and PM2 In our previous guide, we manually deployed a Node.js app to a VPS using Nginx and PM2. In this follow-up, we’ll take it one step...

How to Implement Rate Limiting in Express.js Using express-rate-limit
🔒 Rate Limiting in Express.js Rate limiting is a critical part of modern web applications that helps prevent abuse by restricting the number of requests a user or IP can make within...

How to Deploy an Express.js App on an Ubuntu Server using PM2 and Nginx | techahmed.com
🚀 How to Deploy an Express.js App on an Ubuntu Server using PM2 and Nginx Deploying your Express.js app to a production server might sound daunting at first, but with tools like PM2 fo...

Designing a Scalable Notification System: Architecture, Challenges & Best Practices
As your application grows, sending notifications—whether via email, SMS, or push—quickly becomes more complex. Take a simple example: when a new user signs up, your backend might call an email service...