├── .gitignore ├── example └── motionstream-example.js ├── index.js ├── lib ├── motion.js └── motionstream.js ├── package.json ├── readme.md └── test └── motion-test.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | /node_modules 4 | -------------------------------------------------------------------------------- /example/motionstream-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaelzer/motion/HEAD/example/motionstream-example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaelzer/motion/HEAD/index.js -------------------------------------------------------------------------------- /lib/motion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaelzer/motion/HEAD/lib/motion.js -------------------------------------------------------------------------------- /lib/motionstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaelzer/motion/HEAD/lib/motionstream.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaelzer/motion/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaelzer/motion/HEAD/readme.md -------------------------------------------------------------------------------- /test/motion-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmaelzer/motion/HEAD/test/motion-test.js --------------------------------------------------------------------------------