Hacker News new | ask | show | jobs
by oulipo 849 days ago
Why not using JupyterLite which doesn't require a backend? https://jupyter.org/try-jupyter/lab/index.html
1 comments

It runs python / sqlite / typescript in the browser https://jupyterlite.github.io/demo/lab/index.html
it seems to be running JS in webworker. which is good as it does not block the main thread, but then you cannot access some of the JS features like the DOMs and importing modules dynamically.

still I ♥ the fact that it can loaded from guthub pages without any backend!!