
-
Nodemon.io
Monitor for any changes in your node.js application and automatically restart the server - perfect for development
Luckily I discovered a great tool called Nodemon https://github.com/remy/nodemon. Install it by running
-
SurveyJS
JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
-
The answer to that question is a great tool called PM2 https://github.com/Unitech/pm2. PM2 is a tool like nodemon which is intended to run your node app in production. Like Nodemon it will monitor your app for changes and redeploy them, but unlike Nodemon, if PM2 encounters a crash, it will restart your node.js app right away.
-
Async.js https://github.com/caolan/async or “async” allows you to easily execute functions in series or parallel without the need of nesting them back to back.
-
Another great library is Q https://github.com/kriskowal/q. This library is exposes the concept of promises. A promise is basically an object that is returned from a method with the “promise” that it will eventually provide a return value. This ties is very neatly with the asynchronous nature of javascript and node.js.
-
Node-inspector lets you do some really cool things like live code changing, step debugging, scope injection and a bunch of other cool stuff. It’s bit involved to setup, so I’ll let you follow the instructions over at https://github.com/node-inspector/node-inspector
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Related posts
-
Guia de Comandos PM2
-
Practical Guide to Set Up Multiple NodeJS Apps on AWS EC2 Instance with Automatic Deployment using GitHub Actions (Screenshots)
-
Understanding Nginx: From Simple Concepts to Technical Details and Deploying securely with PM2 and Certbot
-
Node.js PM2 Explained
-
PM2: Production Process Manager with a Built-In Load Balancer