observable-framework-sql
Installation
SKILL.md
SQL
Observable Framework documentation: SQL Source: https://observablehq.com/framework/sql
Framework includes built-in support for client-side SQL powered by DuckDB. You can use SQL to query data from CSV, TSV, JSON, Apache Arrow, Apache Parquet, and DuckDB database files, which can either be static or generated by data loaders.
To use SQL, first register the desired tables in the page’s front matter using the sql option. Each key is a table name, and each value is the path to the corresponding data file. For example, to register a table named gaia from a Parquet file:
---
sql:
gaia: ./lib/gaia-sample.parquet
---