├── .gitignore ├── LICENSE.APACHE2 ├── LICENSE.MIT ├── index.js ├── package.json ├── readme.markdown └── test ├── create-remote.js ├── custom-flatten.js ├── double-cb.js ├── error.js ├── index.js ├── single-arg.js └── support └── cp.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.APACHE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/LICENSE.APACHE2 -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/package.json -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/readme.markdown -------------------------------------------------------------------------------- /test/create-remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/test/create-remote.js -------------------------------------------------------------------------------- /test/custom-flatten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/test/custom-flatten.js -------------------------------------------------------------------------------- /test/double-cb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/test/double-cb.js -------------------------------------------------------------------------------- /test/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/test/error.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/test/index.js -------------------------------------------------------------------------------- /test/single-arg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/test/single-arg.js -------------------------------------------------------------------------------- /test/support/cp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/rpc-stream/HEAD/test/support/cp.js --------------------------------------------------------------------------------