{"id":40138022,"url":"https://github.com/aszenz/data-explorer","last_synced_at":"2026-01-19T14:07:16.211Z","repository":{"id":275359585,"uuid":"925852702","full_name":"aszenz/data-explorer","owner":"aszenz","description":"Explore malloy models, a static site builder for sharing data explorations.","archived":false,"fork":false,"pushed_at":"2026-01-17T06:12:29.000Z","size":3911,"stargazers_count":5,"open_issues_count":4,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-17T17:54:06.043Z","etag":null,"topics":["data-analytics","data-modelling","data-visualization"],"latest_commit_sha":null,"homepage":"https://aszenz.github.io/data-explorer/","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/aszenz.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-01T22:32:26.000Z","updated_at":"2026-01-03T16:29:01.000Z","dependencies_parsed_at":"2025-02-15T10:29:08.939Z","dependency_job_id":"465548e2-a6a4-41aa-b466-e14bff7cdd61","html_url":"https://github.com/aszenz/data-explorer","commit_stats":null,"previous_names":["aszenz/malloy-try","aszenz/data-explorer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aszenz/data-explorer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aszenz%2Fdata-explorer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aszenz%2Fdata-explorer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aszenz%2Fdata-explorer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aszenz%2Fdata-explorer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aszenz","download_url":"https://codeload.github.com/aszenz/data-explorer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aszenz%2Fdata-explorer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28571563,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T12:50:50.164Z","status":"ssl_error","status_checked_at":"2026-01-19T12:50:42.704Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["data-analytics","data-modelling","data-visualization"],"created_at":"2026-01-19T14:07:15.570Z","updated_at":"2026-01-19T14:07:16.204Z","avatar_url":"https://github.com/aszenz.png","language":"TypeScript","readme":"# Data explorer\n\nExplore semantic data models written in [malloy](https://www.malloydata.dev/).\n\nA static site builder for sharing data explorations.\n\n## Demo Examples\n\n### Try exploring these data models:\n\n- [Sales Orders](https://aszenz.github.io/data-explorer/#/model/sales_orders)\n\nOn opening, a schema page is shown with views, dimensions and\nmeasures associated with the model sources.\n\nClicking on any schema item\nopens up Malloy Explorer\nwith a pre-defined query to see\nthe data for that item.\n\nAll interactions within the\nexplorer are saved to the url so\nsharing a particular query/view\nof the model is as easy as\nsharing a link.\n\n### Try viewing these data notebooks:\n\n- [Super Store](https://aszenz.github.io/data-explorer/#/notebook/SuperStore?showCode)\n\nA notebook is a sequence of markdown and Malloy results that are rendered together in a single page to explain data.\n\n## Publishing your own Malloy models and notebooks\n\n1. Clone the repo `git clone https://github.com/aszenz/data-explorer.git`\n2. Look at the `models` directory, it contains example models, notebooks and data files like [trading model](https://github.com/aszenz/data-explorer/blob/master/models%2Ftrading.malloy) which uses data from two csv files [orders](https://raw.githubusercontent.com/aszenz/data-explorer/refs/heads/master/models/data/orders.csv) and [contracts](https://raw.githubusercontent.com/aszenz/data-explorer/refs/heads/master/models/data/contracts.csv), you can add your own models, notebooks and their data files here.\n3. Run `npm run start` to build and run the site locally at `http://localhost:3000`.\n4. Deploy your site by copying the generated `dist` folder to any static web hosting service (like GitHub Pages, Netlify, or Vercel) or serve it using any HTTP server.\n\n\u003e [!WARNING]\n\u003e The built `dist/index.html` file cannot be opened directly in the browser using the `file://` protocol. You must serve it through a local web server. Navigate to the `dist` directory and run one of these commands:\n\u003e\n\u003e - `python -m http.server 8000` (then visit http://localhost:8000)\n\u003e - `npx serve -s . -p 8000` (then visit http://localhost:8000)\n\n\u003e [!NOTE]\n\u003e To host the site under a subpath (commonly used for GitHub Pages), add the `BASE_PUBLIC_PATH` environment variable when building the site.\n\u003e\n\u003e For example, to host under `https://yourusername.github.io/your-repo-name/` run:\n\u003e `BASE_PUBLIC_PATH=/your-repo-name/ npm run build`\n\u003e\n\u003e Then deploy the contents of the `dist` folder to your GitHub Pages.\n\u003e You can also look at this [Github Actions File](.github/workflows/ci_cd.yml) for an example of deploying to GitHub Pages.\n\n\u003e [!TIP]\n\u003e Models can also reference data from external URLs (with CORS support), like the [Super Store model](https://github.com/aszenz/data-explorer/blob/master/models%2Fsuperstore.malloy) which uses data from huggingface.\n\n## Using these awesome technologies\n\n- [Malloy Language](https://github.com/malloydata/malloy)\n- [Malloy Explorer](https://github.com/malloydata/malloy-explorer)\n- [DuckDB WASM](https://github.com/duckdb/duckdb-wasm)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faszenz%2Fdata-explorer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faszenz%2Fdata-explorer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faszenz%2Fdata-explorer/lists"}