This is a monkey patched fork of https://github.com/d4rkr00t/prosemirror-dev-tools which fixed the wrong indexing problem (see this discussion).
Install prosemirror-dev-tools
package from npm:
npm install --save-dev kepta/prosemirror-dev-tools
Wrap EditorView
instance in applyDevTools method:
import applyDevTools from "prosemirror-dev-tools";
const view = new EditorView /*...*/();
applyDevTools(view);
- Inspect document – all nodes and marks
- Inspect selection – position, head, anchor and etc.
- Inspect active marks
- See document stats – size, child count
- Inspect document changes over time
- Time travel between states
- See selection content for particular state in time
- See selection diff
Inspect state of each plugin inside prosemirror.
Inspect current document schema with nodes and marks.
Visual representation of current document tree with positions at the beginning and the end of every node.
Snapshots allow you to save current editor state and restore it later. State is stored in local storage.
Contributions are highly welcome! This repo is commitizen friendly — please read about it here.