├── .gitignore ├── History.md ├── LICENSE ├── Makefile ├── Readme.md ├── index.js ├── lib ├── index.js ├── readstream.js └── writestream.js ├── package.json └── test ├── fixtures ├── emptydoc.txt ├── mongo.png └── text.txt └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/Readme.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/readstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/lib/readstream.js -------------------------------------------------------------------------------- /lib/writestream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/lib/writestream.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/emptydoc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/mongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/test/fixtures/mongo.png -------------------------------------------------------------------------------- /test/fixtures/text.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aheckmann/gridfs-stream/HEAD/test/index.js --------------------------------------------------------------------------------