From the course: Nest.js Developer Lab 2026: Build a Robust API with Authentication, Articles, and User Profiles
Unlock this course with a free trial
Join today to access over 25,200 courses taught by industry experts.
Creating article module - Nest.js Tutorial
From the course: Nest.js Developer Lab 2026: Build a Robust API with Authentication, Articles, and User Profiles
Creating article module
In this video we will start a new section of our project, because we fully finished our authentication module. And our new section is article. Actually we have a lot of stuff to do regarding article. We can create article, update article, delete article, like, dislike articles and so on. So there is a lot of stuff to implement. But in this video we need to create our basic module and service for our new module. This is why let's jump inside our editor and create here in source a new folder where we will store our article. So here is our folder article, this is our new module and all logic regarding our article we will pack here. And first of all we must create article module.ts. If you don't remember how to create modules or controllers, you can look in our old code or for example user or tag. So, first of all, here we must export our new class, this is ArticleModule. And here on the top we need our module. Sorry, not ng, but just a module. And here inside we must provide our…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.
Contents
-
-
-
-
-
(Locked)
Creating article module13m 5s
-
(Locked)
Creating article method18m 55s
-
(Locked)
Polishing create article8m 41s
-
(Locked)
Get article by slug6m 26s
-
(Locked)
Deleting the article11m 5s
-
(Locked)
Updating an article11m 12s
-
(Locked)
Creating feed25m 28s
-
(Locked)
Liking articles17m 38s
-
(Locked)
Disliking articles20m 28s
-
(Locked)
-
-
-