https://github.com/joe-tito/coding-examples-angular-nestjs
Coding example using Angular and NestJs to build a web app
https://github.com/joe-tito/coding-examples-angular-nestjs
angular nestjs typescript
Last synced: 2 months ago
JSON representation
Coding example using Angular and NestJs to build a web app
- Host: GitHub
- URL: https://github.com/joe-tito/coding-examples-angular-nestjs
- Owner: joe-tito
- Created: 2025-02-25T15:23:56.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-25T15:24:49.000Z (over 1 year ago)
- Last Synced: 2026-04-16T23:10:22.657Z (2 months ago)
- Topics: angular, nestjs, typescript
- Language: TypeScript
- Homepage:
- Size: 207 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About this project
This sample project is built with Angular 11 and NestJS. Some topics I tried to demonstrate in this app:
- Using ChartJS for creating graphs of different types
- Responding to user input and updating graphs
- Creating re-usable components
- Parent/child components and sending data between
- Using TailwindCSS for styling and making app responsive
- Setting up a restful layer in NestJS (mocked fake responses in controllers)
- Generating components using the Angular/Nest CLI. You obviously won't see that, but it was done :)
- Properly typing Typescript vs. using 'any'
## How to launch
1. Clone the repository
1. `git clone git@gitlab.com:joetito1/angular-nestjs-coding-example.git`
2. Install Node and Angular CLI (guessing you have this already)
3. Serve up Angular
1. `cd client`
2. `ng serve`
4. Start NestJS
1. `cd server`
2. `npm start`
5. Application will be available here: [http://localhost:4200](http://localhost:4200)