Skip to content

nvdnkpr/mongoose-watch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mongoose Watch

This plugin has the capacity to generate queries in a certain time. This is to avoid using the "cappde" mongo while having certain documents, according as they changed, all based on dates.

So you will have control of a "real-time", but is the closest thing you can do.

Note: Do not use with .stream()

Install

You need

  • Nodejs
  • Npm
npm install mongosee-watch

Use

In your model

var mongoseeWatch = require('mongosee-watch');
var Player = new Schema({ ... });
Player.plugin( mongoseeWatch( "inLast" ) );

We build a query in mongoose, and give one or two parameters a watch.

var Query =  Player.find().where()...;
var watchPlayers = Query.watch( 'inLast', new Date() );
var player = 0;

watchPlayers.start(function (err, doc){
	if(err) return console.log(err);
	players = docs.length;
	console.log(players);
	if(players === 10 ) watchPlayers.stop();
});

Can modify parameters such as

  • the time the function returns.
  • Date query

Also you can build asynchronously

var Query = Player.find().where()...;
var player = 0;

Query.watch( 'inLast', function (err, timer){
	console.log("Start watch! ");
	timer.start(1200, function (err, doc){
		if(err) return console.log(err);
		players = docs.length;
		console.log(players);
		if(players === 10 ) timer.stop();
	});
});

About

Mongoose watch documents and querys

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published