observable-framework-imports

Installation
SKILL.md

Imports

Observable Framework documentation: Imports Source: https://observablehq.com/framework/imports

You can load a library using an import statement. For example, to load canvas-confetti from npm:

import confetti from "npm:canvas-confetti";

The code above imports the default export and is equivalent to:

import {default as confetti} from "npm:canvas-confetti";

Depending on the package, you may want to import specific named exports, or to import everything as a namespace. For example:

Installs
2
First Seen
Feb 28, 2026
observable-framework-imports — spqw/skill-observable-framework