In this project, I will be developing a Model-View-Controller (MVC) application using AngularJS Framework, which would consume the REST APIs exposed by the Spring Boot Microservice project created earlier.
- Node.js v8+
- Visual Studio Code - An IDE for developing the code. You can use any IDE of your choice, that supports TypeScript. I will be using the Visual Studio Code.
Develop the frontend application using the AngularJS Framework, so that we can consume the REST APIs, mentioned below, exposed by our microservice application:
Description | CRUD Operation | HTTP Method | REST API Endpoint |
---|---|---|---|
Create New Todo Task | CREATE | POST | /tasks |
Fetch All Todo Tasks | READ | GET | /tasks |
Fetch One Todo Task | READ | GET | /tasks/{id} |
Update One Specific Todo Task | UPDATE | PUT | /tasks |
Delete One Specific Todo Task | DELETE | DELETE | /tasks/{id} |
This project was generated with Angular CLI version 11.0.1.
Read the HELP.md file for guide on using Angular Commands.
More detailed documentation regarding this project can be found here.