The "static editor" is the Browser editor with preview.
It can be viewed live at: docs.ourbigbook.com/_obb/dist/editor and its main source code is located at: editor.html.
The static editor is a browser-only toy/demo with no persistent storage. We call it "static" because it is able to run on a static website, as opposed to the more advanced editor present in OurBigBook Web, which interacts fully with a dynamic database. Both static and dynamic editor codebases are highly factored however, which is why they look identical.
That editor can be viewed directly locally with:
git clone https://github.com/ourbigbook/ourbigbook
cd ourbigbook
npm install
npm run build-assets
firefox dist/editor.html
You can also speed up the interactive development loop of editor.html with:as usual when dealing with the
npm run webpack-dev
dist
directory.