Technology Choices

September 11, 2023 by Tom Atkins Tom Atkins ‐ 2 min read

Why PostOwl is built with carefully chosen technology

PostOwl has to be:

  1. Fast (fast to edit content, fast to load pages, fast to search). See Fast software, the best software.
  2. Easy to use (easy to edit content, easy to read on any device)
  3. Efficient (cheap to host, don’t waste electricity when the site is idle)
  4. Long lasting (able to read your content in the future when technology has changed)

To meet these requirements PostOwl uses carefully chosen technology. We’ll write in more detail about the various elements in the future, but here’s a quick summary of how we achieve each goal:

  1. Fast:
    1. SvelteKit makes it easy to create a fast user interface. It feels magically fast when you first try it, even on modest hardware.
    2. SQLite makes the database as fast (or faster) than reading directly from the file system
  2. Easy to use:
    1. ProseMirror and editable.website techniques make ‘in-place editing’ a reality - no clunky admin interface. It’s like using a Word Processor instead of a CMS.
    2. Web standards mean PostOwl can be usable and accessible on any device with a web browser (we still have work to do to make this better)
  3. Efficient:
    1. You don’t need a $5 per month VPS to host a PostOwl site. It’ll happily run on a free hosting plan.
    2. Enabling ‘scale to zero’ with sub-second startup times means PostOwl doesn’t waste electricity when your site is idle.
  4. Long lasting:
    1. SQLite is a Recommended Storage Format for datasets according to the US Library of Congress. Even if the code around PostOwl stops working, you’ll be able to read your content long into the future using other tools (honourable mention to Datasette here!)
    2. We use as few software dependencies as possible. SvelteKit is the main dependency and they work hard to reduce their own dependencies.