Guest User

Untitled

a guest
May 26th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. var couch = require('node-couchdb/lib/couchdb')
  3. var client = couch.createClient(5984cp,'localhost');
  4. var db = client.db('server')
  5.  
  6. db.
  7. saveDoc('score', {name: 'Test', points: 10},function(er,ok) {
  8. if (er) throw new Error(JSON.stringify(er));
  9. sys.puts("save a document");
  10. });
Add Comment
Please, Sign In to add comment