You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
Hello !
Does it support communication between two renderer processes?
Like this:
Renderer Process A
<!DOCTYPE html>
<script src="ipc-promise.min.js"></script>
<script>
ipcPromise.on('twice', function(params) {
return Promise.resolve(params.value * 2);
})
</script>
Renderer Process B
<!DOCTYPE html>
<script src="ipc-promise.min.js"></script>
<script>
ipcPromise
.send('twice', {
value: 1
})
.then(function(result) {
console.log(result); // => "2"
});
</script>
The text was updated successfully, but these errors were encountered:
TheoXiong
changed the title
Does it support communication between two rendererprocesses?
Does it support communication between two renderer processes?
Oct 12, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello !
Does it support communication between two renderer processes?
Like this:
The text was updated successfully, but these errors were encountered: