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'
- Clone the repository
git clone [email protected]:joetito1/angular-nestjs-coding-example.git
- Install Node and Angular CLI (guessing you have this already)
- Serve up Angular
cd client
ng serve
- Start NestJS
cd server
npm start
- Application will be available here: http://localhost:4200