Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# @b2m9/reversible
# reversible

Headless, framework-agnostic undo/redo for any state. You give it reversible
operations; it gives you `undo`/`redo`/`jump` traversal, grouped transactions,
checkpoints, and timeline scrubbing. It does **not** own your state, but composes
with whatever store you already have.
Headless, framework-agnostic undo/redo that stores inverse operations, not
snapshots.

You give it reversible operations; it gives you `undo`/`redo`/`jump` traversal,
grouped transactions, checkpoints, and timeline scrubbing. It does **not** own
your state, but composes with whatever store you already have.

```bash
npm install @b2m9/reversible
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"name": "@b2m9/reversible",
"version": "0.1.0",
"description": "Headless, framework-agnostic undo/redo for any state — a small command stack of reversible operations with grouped transactions, checkpoints, and timeline scrubbing.",
"version": "0.1.1",
"description": "Headless, framework-agnostic undo/redo that stores inverse operations, not snapshots — with grouped transactions and checkpoints.",
"keywords": [
"checkpoint",
"command-pattern",
"framework-agnostic",
"headless",
"history",
"redo",
"state",
"time-travel",
"transaction",
"undo"
"typescript",
"undo",
"undo-redo"
],
"homepage": "https://github.com/b2m9/reversible#readme",
"bugs": {
Expand Down