API routes naming conventions

beginner

Now its time to talk about REST API routes naming convention. People usually get lost on how to name their...

Introducing views and transformers

beginner

Now we can work with our data but how do we send that data back to our clients? Using `res.end`?...

Introducing Models

beginner

We have our business logic stored in `Controllers` and we create some data we want to store in the database...

Introducing Controllers

beginner

Currently we are handling our main/business logic inside our `routes.js` file. We want to change this by extracting our main/business...

Creating NodeJS project

beginner

In this post we are going to cover how to create a proper project with `npm init` and how to...

Creating proper routes

beginner

We have a proper server but we are still not handling our routes properly. They are still a mess so...

Creating a proper server

beginner

So now we have a working server that handles routes but it is not able to grow with more routes...

HTTP request methods | Events and streams

beginner

You now know how to use routes in order to serve different content based on different paths. But it only...

Routes

beginner

We've created a server but how can we start returning different responses for different requests? For that we will use...

Creating server

beginner

We are finally ready to start using NodeJS and create our webserver but before we do let's first go through...