Published
Edited
Nov 19, 2020
20 stars
Insert cell
Insert cell
5
Insert cell
"hello"
Insert cell
[1,2,3]
Insert cell
({ "item": "banana", "price": 10.00 })
Insert cell
2 * 3 === 6
Insert cell
function hiya() {
return "hello world";
}
Insert cell
hiya()
Insert cell
hello = new Promise((resolve) => setTimeout(() => resolve("hi"), 1000))
Insert cell
hello.toUpperCase()
Insert cell
md`## ${language}-powered Markdown`
Insert cell
language = "Observable"
Insert cell
scream = {
let a = 5;
let string = "";
for (let i = 0; i < a; i++) {
string += "a";
yield string;
}
}
Insert cell
scream
Insert cell
o = {
let o = 0;
while (true) {
if (o >= 1) { o = 0; }
yield o;
o += 0.01;
}
}
Insert cell
html`<p style="opacity:${o}">blink</p>`
Insert cell
d3 = require("d3")
Insert cell
d3.range(0,10)
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more