├── .gitignore ├── LICENSE ├── README.md ├── guest-bundle.js ├── guest.js ├── host-webview.js ├── host.js ├── index.js ├── package.json ├── protocol.js ├── request.js └── test ├── browser-window ├── index.html ├── main.js ├── mainWindow.js ├── package.json └── test │ └── test.js └── webview ├── index.html ├── index.js ├── main.js ├── package.json ├── test └── test.js └── webview.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/README.md -------------------------------------------------------------------------------- /guest-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/guest-bundle.js -------------------------------------------------------------------------------- /guest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/guest.js -------------------------------------------------------------------------------- /host-webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/host-webview.js -------------------------------------------------------------------------------- /host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/host.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/package.json -------------------------------------------------------------------------------- /protocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/protocol.js -------------------------------------------------------------------------------- /request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/request.js -------------------------------------------------------------------------------- /test/browser-window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/browser-window/index.html -------------------------------------------------------------------------------- /test/browser-window/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/browser-window/main.js -------------------------------------------------------------------------------- /test/browser-window/mainWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/browser-window/mainWindow.js -------------------------------------------------------------------------------- /test/browser-window/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/browser-window/package.json -------------------------------------------------------------------------------- /test/browser-window/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/browser-window/test/test.js -------------------------------------------------------------------------------- /test/webview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/webview/index.html -------------------------------------------------------------------------------- /test/webview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/webview/index.js -------------------------------------------------------------------------------- /test/webview/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/webview/main.js -------------------------------------------------------------------------------- /test/webview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/webview/package.json -------------------------------------------------------------------------------- /test/webview/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/webview/test/test.js -------------------------------------------------------------------------------- /test/webview/webview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanchas116/electron-safe-ipc/HEAD/test/webview/webview.html --------------------------------------------------------------------------------