warning: WebContents #1 called ipcRenderer.sendSync() with 'electron-store-get-data' channel without listeners.
See original GitHub issuepackage.json
"electron": "^15.3.1",
"electron-better-ipc": "^2.0.1",
command
npm run electron
package.json
"scripts": {
"dev": "vue-cli-service serve --silent"
}

Issue Analytics
- State:
- Created 2 years ago
- Comments:6
Top Results From Across the Web
WebContents #1 called ipcRenderer.sendSync() with 'electron ...
sendSync() with 'electron-store-get-data' channel without listeners. #212. medi11 posted onGitHub. I keep getting this warning whenever I add electron ...
Read more >Send sync message from IpcMain to IpcRenderer - Electron
webContents.send('ping', 'whoooooooh!') but is there any way to send sync message from IpcMain to IpcRenderer?
Read more >webContents | Electron
Emitted when the renderer process sends a synchronous message via ipcRenderer.sendSync() . See also webContents.ipc , which provides an IpcMain -like interface ...
Read more >Nuxt2 x TypeScript x SQLiteのプロジェクトでElectronをv7 ...
間接的には以下のようなエラーも出る。 WebContents #1 called ipcRenderer.sendSync() with 'electron-store-get-data' channel without listeners.
Read more >Electron v17.0.0发布 - Linuxeden开源社区
... warning when ipcRenderer.sendSync() is called with no listeners for channel on ipcMain . ... getPrinters() and introduces webContents.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Add below code in
main.jsIt works for me!
I ran into something similar trying to use
electron-storewith Electron v16.0.0. Try callinginitialize()andenable()to yourindex.jslike this: