├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── examples └── empty ├── index.js ├── lib ├── connect.coffee ├── formats.coffee ├── getOplogStream.coffee ├── main.coffee └── util.coffee ├── package.json └── test ├── connect.coffee ├── mocha.opts ├── mongo-watch.coffee └── util.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | tmp 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/README.md -------------------------------------------------------------------------------- /examples/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/index.js -------------------------------------------------------------------------------- /lib/connect.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/lib/connect.coffee -------------------------------------------------------------------------------- /lib/formats.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/lib/formats.coffee -------------------------------------------------------------------------------- /lib/getOplogStream.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/lib/getOplogStream.coffee -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /lib/util.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/lib/util.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/package.json -------------------------------------------------------------------------------- /test/connect.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/test/connect.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/mongo-watch.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/test/mongo-watch.coffee -------------------------------------------------------------------------------- /test/util.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchlightSoftware/mongo-watch/HEAD/test/util.coffee --------------------------------------------------------------------------------