📄️ Automating Server Restarts with Nodemon
When developing applications, it can be tedious to manually restart the server every time you make a change. That’s where Nodemon comes in. It automatically restarts application when file changes are detected.
📄️ My Typical Usage of Node.js and Express
When building web applications, I often use Node.js and Express for server-side programming.
📄️ Understanding the Request Object in Express.js
In Express.js, we use the req object to get data from the client. Here are some key parts I frequently used:
📄️ Implementing JWT Authentication
JSON Web Tokens (JWT) are a small and secure way to share information between two parties.
📄️ Understanding bcrypt for User Authentication
Introduction