A simple notes application built with Spring Boot (backend) and Angular (frontend). Users can create, view, and delete notes. Notes are stored temporarily in memory without using a database.
Backend
- Java
- Spring Boot
Frontend
- Angular
- Bootstrap
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/notes |
Retrieve all notes |
| POST | /api/notes |
Create a new note |
| DELETE | /api/notes/{id} |
Delete a note |
mvn spring-boot:runServer will run at:
http://localhost:8000
npm install
ng serveOpen the application at:
http://localhost:4200





