API routes naming conventions
Now its time to talk about REST API routes naming convention. People usually get lost on how to name their...
Now its time to talk about REST API routes naming convention. People usually get lost on how to name their...
Now we can work with our data but how do we send that data back to our clients? Using `res.end`?...
We have our business logic stored in `Controllers` and we create some data we want to store in the database...
Currently we are handling our main/business logic inside our `routes.js` file. We want to change this by extracting our main/business...
In this post we are going to cover how to create a proper project with `npm init` and how to...
We have a proper server but we are still not handling our routes properly. They are still a mess so...
So now we have a working server that handles routes but it is not able to grow with more routes...
You now know how to use routes in order to serve different content based on different paths. But it only...
We've created a server but how can we start returning different responses for different requests? For that we will use...
We are finally ready to start using NodeJS and create our webserver but before we do let's first go through...