Download link
File List
-
0. Websites you may like/[CourseClub.ME].url 122 B
0. Websites you may like/[FCS Forum].url 133 B
0. Websites you may like/[FreeCourseSite.com].url 127 B
0. Websites you may like/[GigaCourse.Com].url 49 B
01 - Introduction to NestJS & Pre-requisites/001 NEW COURSE VERSION LIVE (JUNE 2021).html 831 B
01 - Introduction to NestJS & Pre-requisites/002 Welcome to the course_.mkv 4.21 MB
01 - Introduction to NestJS & Pre-requisites/003 Installing Node.js and Yarn.html 839 B
01 - Introduction to NestJS & Pre-requisites/004 Installing the NestJS CLI.mkv 1.39 MB
01 - Introduction to NestJS & Pre-requisites/005 (Optional) Installing VSCode and Extensions.mkv 12.14 MB
02 - Task Management Application (REST API)/001 Project Overview.mkv 20.87 MB
02 - Task Management Application (REST API)/002 Creating our project via the NestJS CLI.mkv 12.07 MB
02 - Task Management Application (REST API)/003 NestJS Project Structure.mkv 47.46 MB
02 - Task Management Application (REST API)/004 Introduction to NestJS Modules.mkv 11.48 MB
02 - Task Management Application (REST API)/005 Creating a Tasks Module.mkv 14.69 MB
02 - Task Management Application (REST API)/006 Introduction to NestJS Controllers.mkv 18.86 MB
02 - Task Management Application (REST API)/007 Creating at Tasks Controller.mkv 12 MB
02 - Task Management Application (REST API)/008 Introduction to NestJS Providers and Services.mkv 20.98 MB
02 - Task Management Application (REST API)/009 Creating a Tasks Service.mkv 23.39 MB
02 - Task Management Application (REST API)/010 Feature_ Getting All Tasks.mkv 37.85 MB
02 - Task Management Application (REST API)/011 Installing Postman.html 479 B
02 - Task Management Application (REST API)/012 Creating a Postman Collection.mkv 4.72 MB
02 - Task Management Application (REST API)/013 Defining a Task Model.mkv 20.39 MB
02 - Task Management Application (REST API)/014 Feature_ Creating a Task (Part 1 - Controller).mkv 29.29 MB
02 - Task Management Application (REST API)/015 Feature_ Creating a Task (Part 2 - Service).mkv 41.06 MB
02 - Task Management Application (REST API)/016 Intro to Data Transfer Objects (DTO).mkv 23.79 MB
02 - Task Management Application (REST API)/017 Implementing CreateTaskDto.mkv 28.07 MB
02 - Task Management Application (REST API)/018 Feature_ Getting a Task by ID.mkv 29.55 MB
02 - Task Management Application (REST API)/019 Challenge_ Deleting a Task.mkv 3.39 MB
02 - Task Management Application (REST API)/020 Solution_ Deleting a Task.mkv 17.98 MB
02 - Task Management Application (REST API)/021 Challenge_ Update Task Status.mkv 5.32 MB
02 - Task Management Application (REST API)/022 Solution_ Update Task Status.mkv 33.48 MB
02 - Task Management Application (REST API)/023 Feature_ Searching and Filtering.mkv 61.54 MB
02 - Task Management Application (REST API)/025 Section Code.html 99 B
03 - Validation and Error Handling/001 Introduction to NestJS Pipes.mkv 18.3 MB
03 - Validation and Error Handling/002 ValidationPipe_ Creating a Task.mkv 63.32 MB
03 - Validation and Error Handling/003 Error Handling_ Getting a non-existing Task.mkv 29.99 MB
03 - Validation and Error Handling/004 Error Handling_ Deleting a non-existing Task.mkv 6.62 MB
03 - Validation and Error Handling/005 Validation_ Update Task Status.mkv 15.68 MB
03 - Validation and Error Handling/006 Challenge_ Validating Task Filtering and Search.mkv 9.67 MB
03 - Validation and Error Handling/007 Section Code.html 109 B
03 - Validation and Error Handling/external-assets-links.txt 135 B
04 - Data Persistence - PostgreSQL and TypeORM/001 Introduction to Persistence.mkv 3.58 MB
04 - Data Persistence - PostgreSQL and TypeORM/002 Installing Docker and pgAdmin.html 933 B
04 - Data Persistence - PostgreSQL and TypeORM/003 Running PostgreSQL via Docker.mkv 4.96 MB
04 - Data Persistence - PostgreSQL and TypeORM/004 Setting up pgAdmin.mkv 3.16 MB
04 - Data Persistence - PostgreSQL and TypeORM/005 Creating a Database using pgAdmin.mkv 1.89 MB
04 - Data Persistence - PostgreSQL and TypeORM/006 Introduction to TypeORM.mkv 12.07 MB
04 - Data Persistence - PostgreSQL and TypeORM/007 Setting up a Database Connection.mkv 21.67 MB
04 - Data Persistence - PostgreSQL and TypeORM/008 Creating a Task Entity.mkv 13.76 MB
04 - Data Persistence - PostgreSQL and TypeORM/009 Active Record VS Data Mapper Patterns.mkv 22.31 MB
04 - Data Persistence - PostgreSQL and TypeORM/010 Creating a Tasks Repository.mkv 17.24 MB
04 - Data Persistence - PostgreSQL and TypeORM/011 Refactoring for Tasks Service.mkv 23.54 MB
04 - Data Persistence - PostgreSQL and TypeORM/012 Persistence_ Getting a Task by ID.mkv 141.78 MB
04 - Data Persistence - PostgreSQL and TypeORM/013 Persistence_ Creating a Task.mkv 79.19 MB
04 - Data Persistence - PostgreSQL and TypeORM/014 (Challenge) Persistence_ Deleting a Task.mkv 5.63 MB
04 - Data Persistence - PostgreSQL and TypeORM/015 (Solution) Persistence_ Deleting a Task.mkv 46.47 MB
04 - Data Persistence - PostgreSQL and TypeORM/016 Persistence_ Update Task Status.mkv 15 MB
04 - Data Persistence - PostgreSQL and TypeORM/017 Small Change Needed.mkv 10.24 MB
04 - Data Persistence - PostgreSQL and TypeORM/018 Persistence_ Getting All Tasks.mkv 128.16 MB
04 - Data Persistence - PostgreSQL and TypeORM/019 Section Code.html 91 B
04 - Data Persistence - PostgreSQL and TypeORM/external-assets-links.txt 309 B
05 - Auth Part 1 - Authentication/001 Intro to Authentication and Authorization.mkv 810.25 KB
05 - Auth Part 1 - Authentication/002 Setting up AuthModule, User Entity and User Repository.mkv 20.3 MB
05 - Auth Part 1 - Authentication/003 Feature_ Signing Up.mkv 48.92 MB
05 - Auth Part 1 - Authentication/004 Validation_ Credentials and Password Strength.mkv 22.89 MB
05 - Auth Part 1 - Authentication/005 Error Handling_ Username Conflicts.mkv 74.98 MB
05 - Auth Part 1 - Authentication/006 Securely Storing Passwords.mkv 32.85 MB
05 - Auth Part 1 - Authentication/007 Password Hashing With Bcrypt.mkv 31.45 MB
05 - Auth Part 1 - Authentication/008 Feature_ Signing In.mkv 24.97 MB
05 - Auth Part 1 - Authentication/009 Intro to JSON Web Tokens (JWT).mkv 36.8 MB
05 - Auth Part 1 - Authentication/010 Setting up the JWT Module and Passport.js.mkv 14.03 MB
05 - Auth Part 1 - Authentication/011 Signing a JWT Token on Sign In (Authentication).mkv 40.7 MB
05 - Auth Part 1 - Authentication/012 Implementing JWT Validation.mkv 66.23 MB
05 - Auth Part 1 - Authentication/013 Custom @GetUser Decorator.mkv 10.87 MB
05 - Auth Part 1 - Authentication/014 Guarding the Tasks Routes.mkv 10 MB
05 - Auth Part 1 - Authentication/015 Section Code.html 91 B
05 - Auth Part 1 - Authentication/external-assets-links.txt 218 B
06 - Auth Part 2 - Task Ownership and Restrictions/001 Tasks and Users - Database Relation.mkv 20.46 MB
06 - Auth Part 2 - Task Ownership and Restrictions/002 Make Users Own Tasks.mkv 31.3 MB
06 - Auth Part 2 - Task Ownership and Restrictions/003 Serialize User Data.mkv 37.07 MB
06 - Auth Part 2 - Task Ownership and Restrictions/004 Restricting Getting All Tasks.mkv 23.48 MB
06 - Auth Part 2 - Task Ownership and Restrictions/005 BUG FIX_ Getting All Tasks.mkv 26.59 MB
06 - Auth Part 2 - Task Ownership and Restrictions/006 Restricting Getting a Task By ID.mkv 26.99 MB
06 - Auth Part 2 - Task Ownership and Restrictions/007 Restricting Status Updates.mkv 5.14 MB
06 - Auth Part 2 - Task Ownership and Restrictions/008 Restricting Deleting A Task.mkv 10.42 MB
06 - Auth Part 2 - Task Ownership and Restrictions/009 Section Code.html 106 B
06 - Auth Part 2 - Task Ownership and Restrictions/external-assets-links.txt 103 B
07 - THANK YOU_/001 THANK YOU_ (+ Promotion).mkv 5.7 MB
08 - (Bonus) Logging/001 Introduction to Logging.mkv 10.6 MB
08 - (Bonus) Logging/002 Implementing Logs in our NestJS app.mkv 173.67 MB
08 - (Bonus) Logging/003 Section Code.html 93 B
08 - (Bonus) Logging/external-assets-links.txt 76 B
09 - (Bonus) Configuration Management/001 Introduction to Configuration.mkv 9.62 MB
09 - (Bonus) Configuration Management/002 Windows_ Environment Variables.html 1.3 KB
09 - (Bonus) Configuration Management/003 Quick Intro to Environment Variables.mkv 21.61 MB
09 - (Bonus) Configuration Management/004 Setting up ConfigModule.mkv 69.96 MB
09 - (Bonus) Configuration Management/005 TypeORM Configuration.mkv 55.13 MB
09 - (Bonus) Configuration Management/006 Config Schema Validation.mkv 51.74 MB
09 - (Bonus) Configuration Management/007 JWT Secret Configuration.mkv 30.23 MB
09 - (Bonus) Configuration Management/008 Section Code.html 99 B
10 - (Bonus) Front-end Application/001 Front-end Application.mkv 41.76 MB
10 - (Bonus) Front-end Application/002 Section Code.html 94 B
10 - (Bonus) Front-end Application/external-assets-links.txt 102 B
11 - (Bonus) Deployment/001 DISCLAIMER_ Potential Costs.html 582 B
11 - (Bonus) Deployment/002 Signing up to Heroku.mkv 4.06 MB
11 - (Bonus) Deployment/003 Creating a Heroku Application.mkv 2.93 MB
11 - (Bonus) Deployment/004 Installing the the Heroku CLI.mkv 3.1 MB
11 - (Bonus) Deployment/005 Postgres on Heroku.mkv 9.2 MB
11 - (Bonus) Deployment/006 Changes in our NestJS App.mkv 31.47 MB
11 - (Bonus) Deployment/007 Deploying NestJS to Heroku.mkv 118.4 MB
11 - (Bonus) Deployment/008 Deploying Front-end to GitHub Pages.mkv 48.12 MB
11 - (Bonus) Deployment/009 Section Code.html 90 B
11 - (Bonus) Deployment/external-assets-links.txt 128 B
12 - (Bonus) Unit Testing/001 Unit Testing Crash Course_ Basics.mkv 5.7 MB
12 - (Bonus) Unit Testing/002 Unit Testing Crash Course_ First Tests.mkv 21.03 MB
12 - (Bonus) Unit Testing/003 IMPORTANT_ Fixing import paths.mkv 8.64 MB
12 - (Bonus) Unit Testing/004 Testing TasksService - Part 1.mkv 124.38 MB
12 - (Bonus) Unit Testing/005 Testing TasksService - Part 2.mkv 35.58 MB
12 - (Bonus) Unit Testing/006 Section Code.html 88 B
13 - GraphQL + MongoDB/001 GraphQL + MongoDB_ Section Introduction.mkv 11 MB
13 - GraphQL + MongoDB/002 Project Overview_ School Management.mkv 12.48 MB
13 - GraphQL + MongoDB/003 MongoDB Installation.html 1.6 KB
13 - GraphQL + MongoDB/004 Robo 3T - Connecting to the MongoDB Database.mkv 3.06 MB
13 - GraphQL + MongoDB/005 Project setup.mkv 6.44 MB
13 - GraphQL + MongoDB/006 Ensure NestJS 7 Installation.mkv 1.15 MB
13 - GraphQL + MongoDB/007 Installing GraphQL Dependencies.mkv 17.79 MB
13 - GraphQL + MongoDB/008 IMPORTANT_ GraphQL installation version.html 657 B
13 - GraphQL + MongoDB/009 Creating the Lesson Module.mkv 8.75 MB
13 - GraphQL + MongoDB/010 Defining the Lesson GraphQL Type.mkv 11.2 MB
13 - GraphQL + MongoDB/011 Creating the Lesson Resolver.mkv 14.72 MB
13 - GraphQL + MongoDB/012 Using the GraphQL Playground.mkv 8.5 MB
13 - GraphQL + MongoDB/013 Persistence_ TypeORM, MongoDB and our Lesson Entity.mkv 52.77 MB
13 - GraphQL + MongoDB/014 LessonService and createLesson method.mkv 69.81 MB
13 - GraphQL + MongoDB/015 Create Lesson GraphQL Mutation.mkv 30.01 MB
13 - GraphQL + MongoDB/016 getLesson GraphQL Query with MongoDB.mkv 15.37 MB
13 - GraphQL + MongoDB/017 Validation_ Create Lesson Input.mkv 59.37 MB
13 - GraphQL + MongoDB/018 Challenge_ Get All Lessons GraphQL Query.mkv 29.76 MB
13 - GraphQL + MongoDB/019 Creating the Student Module.mkv 5.28 MB
13 - GraphQL + MongoDB/020 Challenge_ Defining the Student Entity.mkv 16.65 MB
13 - GraphQL + MongoDB/021 Challenge_ Create Student Mutation.mkv 84.45 MB
13 - GraphQL + MongoDB/022 Challenge_ Get All Students GraphQL Query.mkv 20.04 MB
13 - GraphQL + MongoDB/023 Challenge_ Get Student by ID Query.mkv 26.78 MB
13 - GraphQL + MongoDB/024 Assign Students To Lesson GraphQL Mutation.mkv 84.18 MB
13 - GraphQL + MongoDB/025 Improvement_ Assign Students Upon Lesson Creation.mkv 30.3 MB
13 - GraphQL + MongoDB/026 Resolve _students_ Field in Lesson.mkv 79.37 MB
13 - GraphQL + MongoDB/027 Additional Resources_ GraphQL.html 502 B
13 - GraphQL + MongoDB/028 Section Code.html 67 B
Download Info
-
Tips
“[FreeCourseSite.com] Udemy - NestJS Zero to Hero - Modern TypeScript Back-end Development” Its related downloads are collected from the DHT sharing network, the site will be 24 hours of real-time updates, to ensure that you get the latest resources.This site is not responsible for the authenticity of the resources, please pay attention to screening.If found bad resources, please send a report below the right, we will be the first time shielding.
-
DMCA Notice and Takedown Procedure
If this resource infringes your copyright, please email([email protected]) us or leave your message here ! we will block the download link as soon as possiable.