<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: triki-omar</title>
    <description>The latest articles on DEV Community by triki-omar (@trikiomar).</description>
    <link>https://dev.to/trikiomar</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F355249%2F4d9d3429-b706-4059-881a-38e595e3e248.png</url>
      <title>DEV Community: triki-omar</title>
      <link>https://dev.to/trikiomar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/trikiomar"/>
    <language>en</language>
    <item>
      <title>how to connect to a renderer process created by another renderer process in electron js</title>
      <dc:creator>triki-omar</dc:creator>
      <pubDate>Wed, 25 Mar 2020 11:46:38 +0000</pubDate>
      <link>https://dev.to/trikiomar/how-to-connect-to-a-renderer-process-created-by-another-renderer-process-in-electron-js-4ib0</link>
      <guid>https://dev.to/trikiomar/how-to-connect-to-a-renderer-process-created-by-another-renderer-process-in-electron-js-4ib0</guid>
      <description>&lt;p&gt;// in the first renderer process use this code&lt;br&gt;
const { remote } = require('electron');&lt;br&gt;
remote.ipcMain.on('customChannel', (event, message) =&amp;gt; {console.log(merssage)} )&lt;/p&gt;

&lt;p&gt;// in the renderer process created by the first one&lt;br&gt;
const { ipcRenderer } = const('electron');&lt;br&gt;
ipcRenderer.send('customChannel', 'message');&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
