
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
immutable-undo
Advanced tools
Simple data structure for and undo/redo stack, using ImmutableJS. The structure holds a stack of undo states, and a stack of redo states. It does not keep a reference to the current state to avoid duplicating data if your state is already stored in another structure.
npm install --save immutable-undo
History.create
{Object} [opts]
Option object{Number} [opts.maxUndos=500]
Maximum number of undos stored.
Beyond that, some undos are dropped, according to the specified drop strategy.{ (History) => History } [opts.strategy=History.lru]
The drop strategy. See strategies.return {History}
An empty historyvar history = History.create({
maxUndos: 100
});
canUndo
return {Boolean}
True if the history has undoscanRedo
return {Boolean}
True if the history has redosprevious
return {State | Undefined}
The most recent state in the undo stacknext
return {State | Undefined}
The most recent state in the redo stackpush
{State} newState
The state to push on top of the undo stackreturn {History}
Pushes a new state on the undo stack, and clears the redo stack
undo
{State} current
The current state, that will be pushed on the redo stackreturn {History}
The history with the undo stack popped once, and the current state added to redos.redo
{State} current
The current state, that will be pushed on the undo stackreturn {History}
The history with the redo stack popped once, and the current state added to redosThese are built-in strategies for keeping the undo stack under its size limit.
History.lru
Least Recently Used. Simply drops the oldest undo to make room for new one.
History.smooth
Will always keep the initial state (the first undo), and will drop undos such as the oldest undos grow more and more spaced in time, but the more recent undos keep a high precision.
You can imagine the density of undos over time becoming more like this curve:
2.0.0
FAQs
Data structure for and Undo/Redo stack, using ImmutableJS
The npm package immutable-undo receives a total of 109 weekly downloads. As such, immutable-undo popularity was classified as not popular.
We found that immutable-undo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.