{"id":14155159,"url":"https://github.com/blacksmithgu/datacore","last_synced_at":"2026-04-02T00:16:18.459Z","repository":{"id":107048459,"uuid":"582444199","full_name":"blacksmithgu/datacore","owner":"blacksmithgu","description":"Work-in-progress successor to Dataview with a focus on UX and speed.","archived":false,"fork":false,"pushed_at":"2026-03-30T23:57:13.000Z","size":26930,"stargazers_count":2136,"open_issues_count":63,"forks_count":58,"subscribers_count":98,"default_branch":"master","last_synced_at":"2026-03-31T00:28:48.978Z","etag":null,"topics":["database","obsidian","obsidian-md","personal-knowledge-management","pkm"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blacksmithgu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-12-26T21:20:16.000Z","updated_at":"2026-03-30T20:28:31.000Z","dependencies_parsed_at":"2025-12-03T10:03:12.309Z","dependency_job_id":null,"html_url":"https://github.com/blacksmithgu/datacore","commit_stats":{"total_commits":360,"total_committers":10,"mean_commits":36.0,"dds":"0.46944444444444444","last_synced_commit":"80363580c526e7a8d9c153a2f205326afeaffb8f"},"previous_names":[],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/blacksmithgu/datacore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacksmithgu%2Fdatacore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacksmithgu%2Fdatacore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacksmithgu%2Fdatacore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacksmithgu%2Fdatacore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blacksmithgu","download_url":"https://codeload.github.com/blacksmithgu/datacore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacksmithgu%2Fdatacore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31293331,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database","obsidian","obsidian-md","personal-knowledge-management","pkm"],"created_at":"2024-08-17T08:02:18.741Z","updated_at":"2026-04-02T00:16:18.246Z","avatar_url":"https://github.com/blacksmithgu.png","language":"TypeScript","funding_links":[],"categories":["TypeScript","obsidian-md"],"sub_categories":[],"readme":"# Datacore\n\nDatacore is a work-in-progress re-imagining of [Dataview](https://github.com/blacksmithgu/obsidian-dataview.git) with a\nfocus on 2-10x better query and rendering performance, as well as fully interactable views.\n\n## Documentation\n\nYou can find the current documentation at https://blacksmithgu.github.io/datacore/.\n\n## Roadmap\n\nDatacore is a work in progress. For more details, check out the [roadmap](ROADMAP.md).\n\n### Differences from Dataview\n\nDatacore is fundamentally the same thing as dataview - an index over Markdown files that supports live-updating views\nand metadata. However, Datacore focuses on substantial index changes for performance, as well as a new sleek UI which\ncompletely replaces traditional Dataview queries. Datacore supports all query operations that Dataview does, with some\nextra functionality.\n\n- **New Javascript API**: Javascript-based views are now React-based and support internal state, flickerless updates on\n  index changes, and a new query API which is much more performant than `dv.pages().where(...)`.\n- **WYSIWYG Views**: Datacore queries now use a responsive table view and can be manipulated with a table editor much more akin to\n  what you would see in places like Notion and Airtable.\n- **Functioning Embeds**: Markdown page, image, and video embeds now work in all views, and a new special view type\n  which is just a list of embeds has been added.\n- **Live Editing**: Values inside of table views can now be edited; task views include more nuanced rendering of\n  metadata like due date and more operations for manipulating tasks directly.\n- **Section / Block Queries**: Datacore indexes all files (including attachments, PDFs, and images), and supports queries\n  at section and block level granularity.\n\n## Compiling \u0026 Building\n\nYou can do a first-time setup of the repository by making sure you have `yarn` installed and then just running\n\n```bash\nyarn install\nyarn run build\n```\n\nThis will invoke `esbuild` under the hood and dump the final plugin into the `/build` directory. There is a short script which can then copy the compiled plugin into your vault -\n\n```bash\n./scripts/install-built /path/to/your/vault/root\n```\n\nYou can combine the build and install into a single command:\n\n```bash\nyarn run build \u0026\u0026 ./scripts/install-built /path/to/your/vault/root\n```\n\n## Formatting \u0026 Running Tests\n\nYou can format your code via\n\n```bash\nyarn run format\n```\n\nAnd you can run jest tests via\n\n```bash\nyarn run test\n```\n\n## Contributing\n\n**Discord**: \u003chttps://discord.gg/KwZUX4BYba\u003e.\n\nContributions are welcome; for any contributions beyond bug fixes, we recommend reaching out via email or discord to make sure what you are trying to implement is reasonable / feasible!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblacksmithgu%2Fdatacore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblacksmithgu%2Fdatacore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblacksmithgu%2Fdatacore/lists"}