├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── README.md ├── index.js ├── package.json ├── src ├── main.js └── rend.js └── test ├── main-to-rend ├── index.html ├── index.js └── rend.js └── rend-to-main ├── index.html ├── index.js └── rend.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/package.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/src/main.js -------------------------------------------------------------------------------- /src/rend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/src/rend.js -------------------------------------------------------------------------------- /test/main-to-rend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/test/main-to-rend/index.html -------------------------------------------------------------------------------- /test/main-to-rend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/test/main-to-rend/index.js -------------------------------------------------------------------------------- /test/main-to-rend/rend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/test/main-to-rend/rend.js -------------------------------------------------------------------------------- /test/rend-to-main/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/test/rend-to-main/index.html -------------------------------------------------------------------------------- /test/rend-to-main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/test/rend-to-main/index.js -------------------------------------------------------------------------------- /test/rend-to-main/rend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jprichardson/electron-ipc-stream/HEAD/test/rend-to-main/rend.js --------------------------------------------------------------------------------