A local-first platform where users own their data cryptographically — built on encrypted SQLite, CRDTs, and libp2p.

Here is the simplest thing you can do with the platform:



const platform = await createPlatform()

const rows = await platform.exec(
'SELECT * FROM notes WHERE scope_id = ?',
['user:alice']
)






That looks like any other...