a demonstration replicated social networking web app built with anproto
wiredove.net/
social
ed25519
protocols
1import { apds } from 'apds'
2import { route } from './route.js'
3import { connect } from './connect.js'
4import { navbar } from './navbar.js'
5
6await apds.start('wiredovedbversion1')
7document.body.appendChild(await navbar())
8await route()
9await connect()
10
11if (!window.location.hash) { window.location = '#' }