{"id":18794300,"url":"https://github.com/angular-university/nestjs-course","last_synced_at":"2025-05-08T21:45:16.371Z","repository":{"id":38455618,"uuid":"209303021","full_name":"angular-university/nestjs-course","owner":"angular-university","description":"NestJs In Practice Course (with MongoDB)","archived":false,"fork":false,"pushed_at":"2024-08-05T13:59:40.000Z","size":2099,"stargazers_count":100,"open_issues_count":40,"forks_count":90,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-02-01T21:09:08.380Z","etag":null,"topics":["angular","nestjs"],"latest_commit_sha":null,"homepage":"https://angular-university.io/course/nestjs-course","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/angular-university.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-09-18T12:28:42.000Z","updated_at":"2024-02-22T19:09:13.000Z","dependencies_parsed_at":"2024-11-07T21:31:44.118Z","dependency_job_id":"da4065ca-ad8c-4319-8adf-f2262d2c62ee","html_url":"https://github.com/angular-university/nestjs-course","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-university%2Fnestjs-course","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-university%2Fnestjs-course/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-university%2Fnestjs-course/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-university%2Fnestjs-course/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/angular-university","download_url":"https://codeload.github.com/angular-university/nestjs-course/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238044095,"owners_count":19407128,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","nestjs"],"created_at":"2024-11-07T21:28:56.736Z","updated_at":"2025-02-10T02:12:22.455Z","avatar_url":"https://github.com/angular-university.png","language":"TypeScript","readme":"\n## NestJs In Practice Course\n\nThis repository contains the code of the [NestJs In Practice Course](https://angular-university.io/course/nestjs-course).\n\n![NestJs Course](https://angular-university.s3-us-west-1.amazonaws.com/course-images/nestjs-v2.png)\n\n\n# Installation pre-requisites\n\nFor taking the course we recommend installing Node 16. \n\nTo easily switch between node versions on your machine, we recommend using a node virtual environment tool such as [nave](https://www.npmjs.com/package/nave) or [nvm-windows](https://github.com/coreybutler/nvm-windows), depending on your operating system. \n\nFor example, here is how you switch to a new node version using nave:\n\n    # note that you don't even need to update your node version before installing nave\n    npm install -g nave\n    \n    nave use 16.13.0\n    node -v\n    v16.13.0\n\n# Installing the Angular CLI\n\nWith the following command the angular-cli will be installed globally in your machine:\n\n    npm install -g @angular/cli \n\n\n# How To install this repository\n\nWe can install the master branch using the following commands:\n\n    git clone https://github.com/angular-university/nestjs-course.git\n    \nThis repository is made of several separate npm modules, that are installable separately. For example, to run the au-input module, we can do the following:\n    \n    cd nestjs-course\n    npm install\n\nThis should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.\n\n# To Run the Development Backend Server\n\nWe can start the sample application backend with the following command:\n\n    cd rest-api \n    npm install\n    npm run server\n\nThis launches a small Node REST API server, built using NestJs. Notice that this has a separate package.json, so you really need to run a second npm install from inside the rest-api directory.\n\n# To run the Development UI Server\n\nTo run the frontend part of our code, we will use the Angular CLI:\n\n    npm start \n\nThe application is visible at port 4200: [http://localhost:4200](http://localhost:4200)\n\n\n\n# Important \n\nThis repository has multiple branches, have a look at the beginning of each section to see the name of the branch.\n\nAt certain points along the course, you will be asked to checkout other remote branches other than master. You can view all branches that you have available remotely using the following command:\n\n    git branch -a\n\n  The remote branches have their starting in origin, such as for example 1-start.\n\nWe can checkout the remote branch and start tracking it with a local branch that has the same name, by using the following command:\n\n      git checkout -b 1-start \n\nIt's also possible to download a ZIP file for a given branch,  using the branch dropdown on this page on the top left, and then selecting the Clone or Download / Download as ZIP button.\n\n# Other Courses\n# Modern Angular With Signals\n\nIf you are looking for the [Modern Angular With Signals Course](https://angular-university.io/course/angular-signals-course), the repo with the full code can be found here:\n\n![Modern Angular With Signals Course](https://d3vigmphadbn9b.cloudfront.net/course-images/large-images/angular-signals-course.jpg)\n\n\n# NgRx (with NgRx Data) - The Complete Guide\n\nIf you are looking for the [Ngrx (with NgRx Data) - The Complete Guide](https://angular-university.io/course/ngrx-course), the repo with the full code can be found here:\n\n![Ngrx (with NgRx Data) - The Complete Guide](https://angular-university.s3-us-west-1.amazonaws.com/course-images/ngrx-v2.png)\n\n\n# Angular Core Deep Dive Course\n\nIf you are looking for the [Angular Core Deep Dive Course](https://angular-university.io/course/angular-course), the repo with the full code can be found here:\n\n![Angular Core Deep Dive](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-core-in-depth-small.png)\n\n# RxJs In Practice\n\nIf you are looking for the [RxJs In Practice](https://angular-university.io/course/rxjs-course), the repo with the full code can be found here:\n\n![RxJs In Practice Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/rxjs-in-practice-course.png)\n\n\n# Angular Testing Course\n\nIf you are looking for the [Angular Testing Course](https://angular-university.io/course/angular-testing-course), the repo with the full code can be found here:\n\n![Angular Testing Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-testing-small.png)\n\n# Serverless Angular with Firebase Course\n\nIf you are looking for the [Serverless Angular with Firebase Course](https://angular-university.io/course/firebase-course), the repo with the full code can be found here:\n\n![Serverless Angular with Firebase Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/serverless-angular-small.png)\n\n# Angular Universal Course\n\nIf you are looking for the [Angular Universal Course](https://angular-university.io/course/angular-universal-course), the repo with the full code can be found here:\n\n![Angular Universal Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-universal-small.png)\n\n# Angular PWA Course\n\nIf you are looking for the [Angular PWA Course](https://angular-university.io/course/angular-pwa-course), the repo with the full code can be found here:\n\n![Angular PWA Course - Build the future of the Web Today](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-pwa-course.png)\n\n# Angular Security Masterclass\n\nIf you are looking for the [Angular Security Masterclass](https://angular-university.io/course/angular-security-course), the repo with the full code can be found here:\n\n[Angular Security Masterclass](https://github.com/angular-university/angular-security-course).\n\n![Angular Security Masterclass](https://s3-us-west-1.amazonaws.com/angular-university/course-images/security-cover-small-v2.png)\n\n# Angular Advanced Library Laboratory Course\n\nIf you are looking for the Angular Advanced Course, the repo with the full code can be found here:\n\n[Angular Advanced Library Laboratory Course: Build Your Own Library](https://angular-university.io/course/angular-advanced-course).\n\n![Angular Advanced Library Laboratory Course: Build Your Own Library](https://angular-academy.s3.amazonaws.com/thumbnails/advanced_angular-small-v3.png)\n\n\n## RxJs and Reactive Patterns Angular Architecture Course\n\nIf you are looking for the RxJs and Reactive Patterns Angular Architecture Course code, the repo with the full code can be found here:\n\n[RxJs and Reactive Patterns Angular Architecture Course](https://angular-university.io/course/reactive-angular-architecture-course)\n\n![RxJs and Reactive Patterns Angular Architecture Course](https://s3-us-west-1.amazonaws.com/angular-academy/blog/images/rxjs-reactive-patterns-small.png)\n\n\n## Complete Typescript Course - Build A REST API\n\nIf you are looking for the Complete Typescript 2 Course - Build a REST API, the repo with the full code can be found here:\n\n[https://angular-university.io/course/typescript-2-tutorial](https://github.com/angular-university/complete-typescript-course)\n\n[Github repo for this course](https://github.com/angular-university/complete-typescript-course)\n\n![Complete Typescript Course](https://angular-academy.s3.amazonaws.com/thumbnails/typescript-2-small.png)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fangular-university%2Fnestjs-course","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fangular-university%2Fnestjs-course","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fangular-university%2Fnestjs-course/lists"}