A small library that wraps a Starboard Notebook iframe in the parent webpage.
A starboard notebook runtime should always run in a sandboxed iFrame on a different domain. This makes sure any code in the notebook can't take over the webpage that contains it.
The webpage talks to the notebook runtime in the iFrame using postMessage
. This package provides an easy-to-use custom HTML element that facilitates this communication.
<div id="mount-point"></div>
<script type="module">
import {StarboardEmbed} from "../dist/index.js"
const mount = document.querySelector("#mount-point");
const el = new StarboardEmbed({
notebookContent: "# %% [javascript]\n3+5\n",
src: "https://cdn.starboard.gg/npm/starboard-notebook@0.13.2/dist/index.html"
});
mount.appendChild(el);
</script>
Or
<script src="/dist/index.iife.js" defer></script>
<starboard-embed>
<script type="starboard">
# %% [javascript]
3+5
</script>
<iframe src="https://cdn.starboard.gg/npm/starboard-notebook@0.13.2/dist/index.html"></iframe>
</starboard-embed>
⚠️ Never use the second approach (the one with the<script>
tag inside thestarboard-embed
element) for notebooks you did not author yourself! It makes cross site scripting (XSS) trivial. Its intended use is for embedding small notebooks in a blogpost, not for use in applications with user-generated content.
- Update to Starboard notebook
0.14.1
.
- Update to Starboard notebook
0.13.2
, and setallow="cross-origin-isolated"
on iframes. - Switched to
cdn.starboard.gg
CDN by default, as it sets the correct CORP, COEP and COOP headers. - The
allow
rules of the iframe now get set (it's an attribute on theiframe
element), allowing you to do things like requesting fullscreen or access to the microphone from within a notebook. You can set your ownallow
value to change this behavior.
- Update for compatiblity with Starboard Notebook version
0.12.0
, which gets rid ofiframe-resizer
library for much smaller bundle size.
- The embed element now tracks unsaved and saved changes.
- Changes to options:
- Added
preventNavigationWithUnsavedChanges
(boolean) option to prevent accidental leaving the page with unsaved changes. - Added
onUnsavedChangesStatusChange
(boolean => void) callback option so you can update your UI accordingly. - The
onSaveMessage
callback function can now return a (promise of a) boolean, in case it resolves totrue
the last saved content is updated.
- Added
- Added
setSaved(content?: string)
method to allow for manually setting the last saved content. - Update default src to starboard-notebook version
0.10.1
.
- Better support for relative URL in embed src.
- Update default src to starboard-notebook version
0.9.4
.
- The notebook iframe src is now hardcoded to a recent starboard-notebook version if not set explicitly on the iframe or passed into the constructor.
- You can now specify your own iframe in the constructor options, this is only relevant for rather advanced use-cases in which a fast loading speed is especially critical.
- Renamed the custom element to
StarboardEmbed
with HTML tagstarboard-embed
. - The custom element longer extends
IFrameHTMLElement
, instead it will look for an iframe child node or create one if it doesn't exist. This means that the Safari polyfill is no longer required, and pages containing a notebook in an iframe will load faster as the iframe can start loading before the main page's Javascript has been run. - You can now embed the notebook's content in a script tag inside the
starboard-embed
element. sendMessage()
function now buffers messages until the notebook ready signal has been received.