Skip to content

Instantly share code, notes, and snippets.

@apage43
Created February 13, 2012 18:38
Show Gist options
  • Save apage43/1818960 to your computer and use it in GitHub Desktop.
Save apage43/1818960 to your computer and use it in GitHub Desktop.
#!/usr/bin/env coffee
Couchstore = require './couchstore'
db = new Couchstore 'cstest.couch'
create = (cb) ->
docset = ((db.newdoc 'doc' + x, {testkey: 'testval' + x}) for x in [1..20])
db.save_multi docset, (err) ->
cb?()
dump = (fin) ->
db.changes 0, (doc) ->
console.log doc
, fin
create -> dump -> console.log "All done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment