DuckPlot is an open-source JavaScript library that allows you to quickly generate charts with Observable Plot when working with DuckDB.
This library is actively being developed, and does not fully support all Observable Plot features. However, we believe it's helpful for many common use cases and are actively adding feature support (see Contrubuting).
See the documentation for more information.
To locally develop DuckPlot, clone the repository and install the dependencies
with npm install
.
npm run dev
and open http://localhost:8008/
npm run dev-server
and view
the outputted .html
files in examples/server-output
npm run dev-multi-chart
, and see the outputted files in examples/server-output
Examples can be easily added to the examples/
directory (and need to be
exported by the examples/plots/index.js
file) to test new features. For
example, here is the line chart example:
import { renderPlot } from "../util/renderPlotClient.js";
// This code is both displayed in the browser and executed
const codeString = `// Standard line chart
duckplot
.table("stocks")
.x("Date")
.y("Open")
.color("Symbol")
.mark("line")
`;
export const line = (options) => renderPlot("stocks.csv", codeString, options);
If you're actively developing DuckPlot, you can run npm run watch:build
to watch for changes in the src/
directory and automatically recompile the TypeScript code.
Run npm run test
to test
Because DuckDB has different APIs for WASM and Node.js, DuckPlot uses a conditional import to load the appropriate DuckDB API based on the environment.
Performing axis adjustments on the server requires measuring the text width of
the axis labels. This is done using opentype.js
. You can pass in your own font
for more precise measurements.
Feel free to open a pull request or file an issue if you have any suggestions or would like to contribute to the project. We are actively working on adding more features and improving the library. However, we are a small team and are actively using this library in our production software, so we may not be able to merge all pull requests.
This project is licensed under the MIT License.