Project

Notes API

A small backend service for storing markdown notes with tag filtering.

Updated Mar 4, 2026 repo live

Notes API hero image

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