Webpath — Examples

Real apps that speak Webpath. The spec is small enough that an app is usually a single file that logs in, takes a key, and does CRUD over HTTP — no backend of its own, because the Webpath host is the backend.

knower.cc is a web platform that implements the Webpath spec as its native communication and API. The apps below run on it.


rooms — a collaborative canvas

Live: rooms.knower.cc

A single-file (~53 KB) HTML canvas app: sign in with email, create a "room", and draw / place things on an infinite canvas. There is no server code — the entire backend is a Webpath space:

It was built straight from Build an App — the same five calls, nothing more. That is the whole point of Webpath: the doc you can paste into a chat agent is also the doc a human builds from.


Patterns you can copy

WantWebpath move
A blog / docs sitePUT *.md ?visibility=public → share the clean URL (renders to HTML).
An event log / agent memoryPUT …jsonl ?append — concurrency-safe line accumulation.
A paste / share toolPUT then hand out the clean URL; ?qr for a scannable code.
A settings store for an appa private space + one scoped key; GET/PATCH ?meta.
A drop box others can add togrant write-only on a path via ?meta sharing.

Build your own

  1. Read Build an App (the five calls).
  2. Keep the API Reference open for the full verb surface.
  3. Point it at a Webpath host (knower.cc, or any host that implements the spec).

The result of your work is always a URL. Share the clean form.


Spec · API Reference · Build an App · Conformance · Generate a server · Home