// summary
Epicenter is an ecosystem of open-source, local-first applications that store data as plain text and SQLite files on your machine. It utilizes Yjs CRDTs to ensure seamless multi-device synchronization while maintaining user privacy through client-side encryption. Developers can leverage the core workspace library to build custom applications that share a unified, typed data schema.
// technical analysis
Epicenter is an ecosystem of local-first, open-source applications designed to provide users with full ownership of their data by storing it in a single folder of plain text and SQLite files. The architecture centers on Yjs CRDTs as the source of truth, which are materialized into SQLite for high-performance querying and markdown for human-readable accessibility. This design solves the fragmentation of data across multiple tools by allowing different applications to read and write to the same shared workspace, while ensuring privacy through client-side encryption and a relay-only sync server.
// key highlights
// use cases
// getting started
To start using Epicenter, you can download pre-built binaries for macOS, Windows, or Linux from the GitHub releases page. Developers interested in building on the platform should clone the repository, ensure Bun and Rust are installed, and run 'bun install' to set up the environment. You can then explore the @epicenter/workspace library to define your own schemas and integrate CRDT-backed tables into your applications.