A very simple note taking app built with ASP.NET Core minimal APIs and a static HTML frontend.
- Prerequisites: .NET 9 SDK
- Run the app:
cd NotesApp dotnet run - Open
http://localhost:5000(or the URL shown in the console).
Notes are stored in NotesApp/App_Data/notes.json (gitignored).
GET /api/notes— list notesPOST /api/notes— create note, JSON body:{ \"title\": \"...\", \"content\": \"...\" }DELETE /api/notes/{id}— delete note by id
You can run Snyk scans if you have the Snyk CLI and token:
export SNYK_TOKEN=YOUR_TOKEN
snyk code test
snyk test