0.0.2 • Published 12 years ago

docstate v0.0.2

Weekly downloads
1
License
-
Repository
-
Last release
12 years ago

Docstate, for stately Couch stuff

A very basic state manager for document based state machines.

Usage

Here is how you would create a useless infinite loop, all serialized through a CouchDB changes feed.

var control = require('docstate').control();

control.safe("user", "new", function(doc){
  console.log(doc.type) // "user"
  doc.state = "old";
  // go save the doc
})

control.safe("user", "old", function(doc){
  doc.state = "new";
  // go save the doc
})

control.start()

mythicalChangesListener.onChange(function(info, doc){
  control.handle(doc)
})