{"id":14959418,"url":"https://github.com/neo4j-labs/neodash","last_synced_at":"2025-05-14T10:11:55.052Z","repository":{"id":38826380,"uuid":"298222410","full_name":"neo4j-labs/neodash","owner":"neo4j-labs","description":"NeoDash - a Dashboard Builder for Neo4j","archived":false,"fork":false,"pushed_at":"2025-04-09T15:57:44.000Z","size":89972,"stargazers_count":465,"open_issues_count":242,"forks_count":151,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-04-11T04:59:41.332Z","etag":null,"topics":["dashboard","graph","neo4j","nodes-2022","visualization"],"latest_commit_sha":null,"homepage":"https://neo4j.com/labs/neodash/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neo4j-labs.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-24T08:52:41.000Z","updated_at":"2025-04-08T13:59:18.000Z","dependencies_parsed_at":"2023-09-23T07:48:04.872Z","dependency_job_id":"315c59c9-2d61-4d71-94da-713b8f8c681e","html_url":"https://github.com/neo4j-labs/neodash","commit_stats":{"total_commits":702,"total_committers":35,"mean_commits":"20.057142857142857","dds":0.688034188034188,"last_synced_commit":"42b196a3ec9a1d5740e4c81420a762646b1295b7"},"previous_names":[],"tags_count":51,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-labs%2Fneodash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-labs%2Fneodash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-labs%2Fneodash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo4j-labs%2Fneodash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neo4j-labs","download_url":"https://codeload.github.com/neo4j-labs/neodash/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248345273,"owners_count":21088244,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["dashboard","graph","neo4j","nodes-2022","visualization"],"created_at":"2024-09-24T13:19:40.520Z","updated_at":"2025-04-11T04:59:52.900Z","avatar_url":"https://github.com/neo4j-labs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n## NeoDash Labs - Neo4j Dashboard Builder\n\n![screenshot](evolving.png)\n\nIn September 2024 **Neo4j [announced](https://www.datanami.com/2024/09/04/neo4j-simplifies-graph-database-in-the-cloud/#:~:text=NeoDash%20is%20an%20open%20source,was%20open%20source%2C%20not%20supported) NeoDash is evolving into a fully supported dashboard builder, as part of the Neo4j product suite**. \n\nThis project (NeoDash Labs) will still be available and contain experimental features, but will **not** have official support. If you're interested to get official support for NeoDash as part of a Neo4j License agreement, please reach out to your Neo4j contact person.\n\n## About NeoDash Labs\nNeoDash is a web-based tool for visualizing your Neo4j data. It lets you group visualizations together as dashboards, and allow for interactions between reports.\n\nNeodash supports presenting your data as tables, graphs, bar charts, line charts, maps and more. It contains a Cypher editor to directly write the Cypher queries that populate the reports. You can save dashboards to your database, and share them with others.\n\n## Try NeoDash Labs\nYou can run NeoDash in one of three ways:\n\n1. You can install NeoDash Labs into Neo4j Desktop from the [graph app gallery](https://install.graphapp.io). NeoDash will automatically connect to your active database.\n\u003e Note: never versions of Neo4j Desktop do not support adding experimental graph apps such as NeoDash.\n\n2. You can run NeoDash Labs from a web browser by visiting http://neodash.graphapp.io.\n3. For on-prem deployments, you can build the application yourself, or pull the latest Docker image from Docker Hub.\n```\n# Run the application on http://localhost:5005\ndocker pull neo4jlabs/neodash:latest\ndocker run -it --rm -p 5005:5005 neo4jlabs/neodash\n```\n\n\u003e Windows users may need to prefix the `docker run` command with `winpty`.\n\n\n\n## Build and Run\nThis project uses `yarn` to install, run, build prettify and apply linting to the code.\n\nTo install dependencies:\n```\nyarn install\n```\n\nTo run the application in development mode:\n```\nyarn run dev\n```\n\nTo build the app for deployment:\n```\nyarn run build\n```\n\nTo manually prettify all the project `.ts` and `.tsx` files, run:\n```\nyarn run format\n```\n\nTo manually run linting of all your .ts and .tsx files, run:\n```\nyarn run lint\n```\n\nTo manually run linting of all your .ts and .tsx staged files, run:\n```\nyarn run lint-staged\n```\n\nSee the [Developer Guide](https://neo4j.com/labs/neodash/2.3/developer-guide/) for more on installing, building, and running the application.\n\n### Pre-Commit Hook\nWhile commiting, a pre-commit hook will be executed in order to prettify and run the Linter on your staged files. Linter warnings are currently accepted. The commands executed by this hook can be found in /.lintstagedrc.json.\n\nThere is also a dedicated linting step in the Github project pipeline in order to catch each potential inconsistency.\n\n\u003e Don't hesitate to setup your IDE formatting feature to use the Prettier module and our defined rules (.prettierrc.json).\n\n\n## User Guide\nNeoDash comes with built-in examples of dashboards and reports. For more details on the types of reports and how to customize them, see the [User Guide](\nhttps://neo4j.com/labs/neodash/2.3/user-guide/).\n\n## Publish Dashboards\nAfter building a dashboard, you can chose to deploy a read-only, standalone instance for users. See [Publishing](https://neo4j.com/labs/neodash/2.3/user-guide/publishing/) for more on publishing dashboards.\n\n\n## Questions / Suggestions\nIf you have any questions about NeoDash, please reach out to the maintainers:\n- Create an [Issue](https://github.com/neo4j-labs/neodash/issues/new) on GitHub for feature requests/bugs.\n- Connect with us on the [Neo4j Discord](https://neo4j.com/developer/discord/).\n- Create a post on the Neo4j [Community Forum](https://community.neo4j.com/).\n\n\u003e NeoDash Labs is a free and open-source tool developed by the Neo4j community - not an official Neo4j product. Use at your own risk!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo4j-labs%2Fneodash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneo4j-labs%2Fneodash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo4j-labs%2Fneodash/lists"}