NodeMon and Express
Nodemon - No need to restart the app after changes.
Express.js allows us to add custom middleware functions that can perform specific tasks, such as logging, authentication, and more. It provides a simple way to handle HTTP requests and responses, allowing you to easily create REST APIs and other types of web services.
To install nodemon and use it with app.
Install nodemon globally:
Create a new Express.js app:
package.json
app.js
Last updated