Adding Authentication

Learn to add user authentication to the application.

We'll cover the following

Previously, we added the capability of creating new users to our application. This, by itself, is a cool feature, but it’s not worth much if we can’t use it for authentication. That’s what we’ll do here.

We’ll start by creating the logic that checks whether a username and password combination is correct, and then we’ll implement an endpoint to do that.

After this, we’ll transition into the authorization topic by returning a token from the login endpoint and later using that token to check if a user is authenticated.

Let’s go step by step, starting with the business logic and persistency layer.

Creating the login business logic

It’s already a practice of ours to, when writing new functionality, start with the business logic. We believe this is intuitive because we think “business” and user first, and only then proceed into the technical details. That’s what we’ll do here.

We’ll start by adding the login logic, back in UserController:

  1. Before we start, let’s add the login method to the UserController interface in src/users/types.ts:

Get hands-on with 1200+ tech skills courses.