mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 10:52:47 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
|
|
var monk = require('..');
|
|
var db = monk('localhost:27017/local');
|
|
|
|
var oplog = db.get('oplog.rs');
|
|
oplog.find({}, { tailable: true, awaitData: true })
|
|
.each(function(){
|
|
console.log(arguments);
|
|
})
|