Platform
Resources
Pricing
Sign in
Get started
Grant Nestor
Owner of Hammies, former Jupyter core developer and co-lead of Jupyter Notebook and JupyterLab teams
Workspace
Fork
Public
Experiments
By
Grant Nestor
Edited
Feb 21, 2021
1 fork
2 stars
Experiments
react-email-editor
Solid JS
Flowbyte Components
Progress
Style Transfer using Tensorflow and Magenta
Javascript Temporal API
Exporting and importing a Pyodide instance to/from a .wasm file
Exploring WebAssembly.Memory
Exploring OmniSci in Observable
Insert cell
Insert cell
{
const
root
=
html
`<div />`
;
render
(
App
,
root
)
;
return
root
;
}
Insert cell
App
=
(
)
=>
{
const
{
createSignal
,
onCleanup
}
=
solid
;
const
[
count
,
setCount
]
=
createSignal
(
0
)
,
timer
=
setInterval
(
(
)
=>
setCount
(
count
(
)
+
1
)
,
1000
)
;
onCleanup
(
(
)
=>
clearInterval
(
timer
)
)
;
return
html
`<div>${
count
}</div>`
;
}
Insert cell
solid
=
import
(
'//cdn.skypack.dev/solid-js'
)
Insert cell
render
=
{
const
{
render
}
=
await
import
(
'//cdn.skypack.dev/solid-js/web'
)
;
return
render
;
}
Insert cell
html
=
{
const
{
default
:
html
}
=
await
import
(
'//cdn.skypack.dev/solid-js/html'
)
;
return
html
;
}
Insert cell
Purpose-built for displays of data
Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Try it for free
Learn more
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
App
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
solid
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
render
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
html
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML