Project
Notes API
A small backend service for storing markdown notes with tag filtering.
notes-api is a side project focused on quick note storage and retrieval for personal tools.
Example endpoint
app.get('/api/notes', async (req, res) => {
const tag = req.query.tag as string | undefined;
const items = await notesStore.list({ tag });
res.json({ items });
});
What it demonstrates
- Clean REST endpoint design
- Tag-based filtering
- Fast iteration for internal tools