BUILDING A SIMPLE FULL STACK PROJECT WITH SPRING BOOT, VUE.JS AND MONGODB (PART 2)

In part 1 of this two-part series, I have demonstrated the development of the backend server of the ToDo project in Spring Boot to serve RESTful API to get, create, edit, and delete ToDo. In this part, I will demonstrate the development of the frontend of the system with Vue.js to show the ToDo in list view with functionalities to mark it done or delete the entry, a view to creating new ToDo entry and a view to modifying the existing ToDo entries. You can access the full source code of this project in this repository.

BUILDING A SIMPLE FULL STACK PROJECT WITH SPRING BOOT, VUE.JS AND MONGODB (PART 1)

In this two-part series, I will demonstrate creating a simple ToDo application. I will be using the Spring Boot framework to prepare the backend project and I will be using Vue.js as for preparing the frontend. I shall use MongoDB as the database. In part 1, I will be showing the development procedure of the Spring Boot backend project. You can access the source code of the project in this repository.