13 followers
I'm a full stack software developer who loves to building new projects and solving difficult problems.
It might not be obvious from my posts, but I'm actually quite funny.
In this post, I will explain what are custom events in the simplest possible way. In summary: it's not as complicated or cool as it sounds; it is only...
In this post, I will show you the quickest way to get the total number of results that your query returned. When I was looking online, I could only...
In this post, we will learn how to get data from a collection using Express.js and MongoDB. Usually, this is the first thing you learn how to do when...
The easiest way that we can add a new row to a collection in our MongoDB is to use Model.create({}). If we want to add a row (you can think of row as...
In this post, I will show you how to send data from a form using express.js. Sending data with express is very easy. In short, to get the data that...
If Express.js is the first backend framework you have ever learned, route is the next topic I recommend learning after mastering MVC. What Is A...