New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@den59k/electron-sync

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@den59k/electron-sync

Syncronize store between main and renderer processes

  • 1.1.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by150%
Maintainers
1
Weekly downloads
 
Created
Source

Electron Sync

The library is provided to synchronize data between the main process and the renderer

Yeah, it is supports batching. All sync process exec in nextTick

Structure

Code splited on 3 parts. For better performance you should import files from subdirectories.

Main

Main containts methods for main process

import { syncMain, proxyMethods } from '@den59k/electron-sync/lib/main'

syncMain is responsible for data synchronization, and proxyMethods is the pretty wrapper for ipcRenderer

You can use it like this:

For data:

import { syncMain } from "@den59k/electron-sync/lib/main"

class CounterData {
  value = 1
}

const counterData = syncMain(new CounterData(), [ "counter" ])
export { counterData, CounterData }

For methods:

import { proxyMethods } from '@den59k/electron-sync/lib/main'
import { counterData } from '../data/counter'

class CounterService {
  
  constructor() {
    proxyMethods(this, "counter")
  }

  increment() {
    counterData.value++
  }

}

export const counterService = new CounterService()

Renderer

Renderer containts methods for renderer process

import { syncRenderer } from '@den59k/electron-sync/lib/renderer'

You can use it like this:
const data = syncRenderer('counter', (obj: CounterData) => reactive(obj))
React + Mobx

If you are using React and Mobx, you can set the action wrapper for all sync calls:

import { action } from 'mobx'
import { setActionWrapper } from '@den59k/electron-sync/lib/renderer'

setActionWrapper(action)

Preload

And finally, scripts for preload

import { bridge, proxy } from '@den59k/electron-sync/lib/preload'

As mentioned before, proxyMethods provides a pretty wrapper for the ipcRenderer->ipcMain channel.

To use it, you need to list the proxied methods in the preloader:

  1. First the methods that do not expect anything ipcRenderer.send

  2. Then methods that call promis and expect its result ipcRenderer.invoke

  3. And finally, methods which call synchronously and expect a synchronous response ipcRenderer.sendSync.

P.S. Sorry about the dummy second argument hack. It is necessary because typescript does not allow to make partial generic types

Example of use:
const electronBridge = {
  ...bridge,
  counter: counter: proxy("counter", {} as typeof counterService, [ "increment" ], [], []))
}

contextBridge.exposeInMainWorld('electron', electronBridge)

FAQs

Package last updated on 12 Jun 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc