
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@observablehq/notebook-inspector
Advanced tools
[](https://circleci.com/gh/observablehq/notebook-inspector/tree/master)
This library implements the default value rendering implementation for Observable notebooks. When plugged in to the Observable runtime as observers, inspectors can be used to insert DOM elements into the page or to render interactive inspectors for arbitrary values.
To install this library from npm:
npm install @observablehq/notebook-inspector
This library is also available for download from unpkg as an ES module and as a UMD bundle.
An inspector implements the Observable runtime’s Observer interface by rendering the current value of its associated variable to a given DOM element. Inspectors display DOM elements “as-is”, and create interactive “devtools”-style inspectors for other arbitrary values such as numbers and objects.
Creates a new inspector attached to the specified DOM element.
For example, to render a notebook into elements whose id attribute matches the variable name:
Runtime.load(notebook, variable => {
return new Inspector(document.getElementById(variable.name));
});
Or, to render a single variable into a new DIV element appended to the body:
Runtime.load(notebook, variable => {
if (variable.name === "chart") {
const div = document.createElement("div");
document.body.appendChild(div);
return new Inspector(div);
}
});
See also Inspector.into.
Applies the observablehq-running
class to this inspector’s element.
# inspector.fulfilled(value) <>
Inspects the specified value, replacing the contents of this inspector’s element as appropriate, and dispatching an update event. If the specified value is a DOM element or text node, and the value is not already attached to the DOM, it is inserted into this inspector’s element, replacing any existing contents. Otherwise, for other arbitrary values such as numbers, arrays, or objects, an expandable display of the specified value is generated into this inspector’s element. Applies the observablehq
class to this inspector’s element, and for non-element values, the observablehq--inspect
class.
# inspector.rejected(error) <>
Inspects the specified error, replacing the contents of this inspector’s element as appropriate with the error’s description, and dispatching an error event. Applies the observablehq
and observablehq--error
class to this inspector’s element.
# Inspector.into(container) <>
Returns a function that when passed a given variable, returns a new inspector attached to a new DIV element within the specifier container element. If container is a string, it represents a selector, and the container element becomes the matching selected element. This method can be used with Runtime.load as the observer factory to conveniently render an entire notebook. For example, to render into the body:
Runtime.load(notebook, Inspector.into(document.body));
To render into a specific element:
Runtime.load(notebook, Inspector.into(".article .visualization"));
FAQs
[](https://circleci.com/gh/observablehq/notebook-inspector/tree/master)
We found that @observablehq/notebook-inspector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.