Lawnchair

Simple JSON Storage

Lawnchair: Simple JSON Storage

Removal

Deleting documents from the store is simple too.

Lawnchair({name:'records'}, function() {

    // save a record
    this.save({key:1}, function() {

        this.all('console.log(records.length)')
        // 1

        this.remove(1, function() {
            this.all('console.log(records.length)')
            // 0
        })
    })

    // we can also clear the entire collection w/ nuke
    this.nuke()
})

Clearing the colleciton with nuke is especially useful for testing.