Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mayneyao/eidos
Offline alternative to Notion. Eidos is an extensible framework for managing your personal data throughout your lifetime in one place.
https://github.com/mayneyao/eidos
database editor llm local-first notion-alternative offline pwa sqlite
Last synced: 3 days ago
JSON representation
Offline alternative to Notion. Eidos is an extensible framework for managing your personal data throughout your lifetime in one place.
- Host: GitHub
- URL: https://github.com/mayneyao/eidos
- Owner: mayneyao
- License: agpl-3.0
- Created: 2023-06-08T16:49:09.000Z (over 1 year ago)
- Default Branch: dev
- Last Pushed: 2024-12-11T20:06:05.000Z (10 days ago)
- Last Synced: 2024-12-11T20:40:49.797Z (10 days ago)
- Topics: database, editor, llm, local-first, notion-alternative, offline, pwa, sqlite
- Language: TypeScript
- Homepage: https://eidos.space
- Size: 13.2 MB
- Stars: 2,368
- Watchers: 9
- Forks: 94
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
![eidos](/public/show/table-and-doc.webp)
Home Page |
Discord |
Download
Eidos is an extensible framework for managing your personal data throughout your lifetime in one place.
> [!IMPORTANT]
> Eidos sets a big goal in mind, but it is still in its early stages, and there is a lot of work to be done. You can give it a try, but I do not recommend using it for production purposes. If you're interested in this project, I recommend staying updated on its development. If you have an Early Access key, you'll receive an email notification when Eidos is officially released.## Features
- Everything runs inside your local machine.
- Offline Support: Access your data without an internet connection. Data is stored locally for blazing-fast performance.
- AI Features: Deeply integrated with LLM for AI-powered capabilities. Translate, summarize, and interact with your data within Eidos. AI works even offline.
- Extensible: Customize Eidos to suit your needs.- Prompt: Speed up your workflow with the Prompt extension. No coding required.
- UDF: Use JavaScript to customize Formula functions.
- Script: Create powerful data processing logic with TypeScript/JavaScript.
- App: Build your own app using any preferred framework. (POC)
- Block: Extend documents with custom blocks.(POC)
- Field: Extend tables with custom fields.(Soon)- Developer Friendly:
- API & SDK
- Sqlite Standardization: Every table in Eidos is a SQLite table.## How to use
There are two versions of Eidos:
- Web app[tech preview]: Accessible via browser, it's a pure PWA with no web server. But it has some limitations, see [web-vs-desktop](./docs/web-vs-desktop.md)
- Desktop app[recommended]: Offline support, full features.Get the app from: https://eidos.space/download
## How to develop
### web app
1. Clone the repository `git clone [email protected]:mayneyao/eidos.git`
2. Run `pnpm install` to install dependencies
3. Run `pnpm dev`
4. You can now access the app in your browser at http://localhost:5173### desktop app
1. Clone the repository `git clone [email protected]:mayneyao/eidos.git`
2. Run `pnpm install` to install dependencies
3. Run `pnpm download-libsimple` to download libsimple
4. Run `pnpm dev:desktop`## How to deploy your own
For most users, you don't need to deploy your own. You can use the desktop app version of Eidos with full offline support and features.
If you want to deploy your own, see more details at [self-hosting](./docs/self-hosting.md)
## Roadmap & changelogs
| Version | Features | Domain | Range | Status |
| ------- | ------------------------------- | --------------- | ------- | ------ |
| 0.13 | Document core refactor | Document,Base | | Plan |
| 0.12 | Table core refactor | Table,Base | 2024-12 | Plan |
| 0.11 | Extension generation via chat | AI,Extension | 2024-11 | ✅ ⬆️ |
| 0.10 | Micro blocks editing via Cursor | AI,Extension | 2024-11 | ✅ |
| 0.9 | Micro block components | AI,Extension | 2024-11 | ✅ |
| 0.8 | i18n support | General | 2024-10 | ✅ |
| 0.7 | Desktop app support | Desktop | 2024-09 | ✅ |
| 0.6 | Bug fixes & Publish service | General,Publish | 2024-08 | ✅ |
| 0.5 | Feature improvements | General | 2024-07 | ✅ |
| 0.4 | Open source | Project | 2024-06 | ✅ |
| 0.3 | AI & Extension | AI,Extension | | ✅ |
| 0.2 | Document functionality | Document | | ✅ |
| 0.1 | Table functionality | Table | | ✅ |You can see the latest status of the project in the [project board](https://github.com/users/mayneyao/projects/5), but it may not be up to date.
- [x] Desktop App
- [x] I18n
- [ ] Publish Service: Publish your data to the web.
- [ ] P2p sync based on CRDT: local-first, not local-only. Sync your data across devices.## Credits
Eidos based on the following open-source projects:
### web app
- [sqlite-wasm](https://github.com/sqlite/sqlite-wasm) - Run SQLite in the browser
- [shadcn-ui](https://github.com/shadcn-ui/ui) - UI components
- [glide-data-grid](https://github.com/glideapps/glide-data-grid) - High performance table
- [lexical](https://github.com/facebook/lexical) - Document editor
- [web-llm](https://github.com/mlc-ai/web-llm) - Run LLM in the browser
- [teable](https://github.com/teableio/teable) & [apitable](https://github.com/apitable/apitable) - Teach me how to build an Airtable-like table.### desktop app
- [electron](https://github.com/electron/electron) - Build cross-platform desktop apps
- [libsimple](https://github.com/wangfenjin/libsimple) - a sqlite extension for full-text search for CJK languages## License
This project is licensed under the terms of the AGPL license.