You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Save and load notebooks to local-storage, even if you've lost your connection to the server.
6
+
Save and load notebooks to browser storage, even if you've lost your connection to the server.
7
7
8
8
9
9
Installation
@@ -66,3 +66,12 @@ There are [several major limitations](https://github.com/manics/jupyter-offlinen
66
66
- Local-storage is limited by quotas imposed by the browser.
67
67
- A repository ID and path of the notebook within Jupyter Notebook are used, joined by a ``.
68
68
This may change in future.
69
+
70
+
71
+
Development notes
72
+
-----------------
73
+
74
+
This extension stores notebooks in browser storage using the [IndexedDB API](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API), wrapped with [Dexie.js](https://dexie.org/).
75
+
76
+
One server API call is made during initialisation to obtain the storage configuration.
77
+
Everything else is done client-side so should work even if the server is disconnected.
0 commit comments