histable

1.1.0 • Public • Published

Histable

Build Status npm Coverage Status

A no external dependency module that maintains the history of state changes.

Installation

npm i histable --save

Usage

const histable = require('histable')
const history = histable.create()
history.push(1)
history.push(2)
history.push(3)
history.undo() // 2
history.undo() // 1
history.undo() // undefined

API DOCUMENTATION


Why this name?

History + Immutable = Histable — so couldn't think of anything better.

Package Sidebar

Install

npm i histable

Weekly Downloads

1

Version

1.1.0

License

ISC

Last publish

Collaborators

  • tusharmathur