Giter VIP home page Giter VIP logo

Comments (5)

alex8088 avatar alex8088 commented on June 2, 2024 1

https://github.com/alex8088/EvPlayer

from electron-toolkit.

alex8088 avatar alex8088 commented on June 2, 2024 1

https://github.com/alex8088/electron-toolkit/tree/master/packages/preload#get-started

from electron-toolkit.

alex8088 avatar alex8088 commented on June 2, 2024

app cannot be used in preload/renderer. You should use ipc to handle.

from electron-toolkit.

lynxionxs avatar lynxionxs commented on June 2, 2024

@alex8088 How to use ipc to handle ? All i want is to get the app.getPath('appData')
Can you give example using IPC ?

from electron-toolkit.

lynxionxs avatar lynxionxs commented on June 2, 2024

@alex8088 Thanks. Is it okay to use the ipcRenderer from electron in the preload script, or must i use the ipcRenderer from electronAPI in preload script ?

../preload/index.ts

import { contextBridge, ipcRenderer } from 'electron'
import { electronAPI } from '@electron-toolkit/preload'

// Custom APIs for renderer
const api = {
  getAppDataPath: () => ipcRenderer.invoke('get-appData-path')
}

if (process.contextIsolated) {
  try {
    contextBridge.exposeInMainWorld('electron', electronAPI)
    contextBridge.exposeInMainWorld('api', api)
  } catch (error) {
    console.error(error)
  }
} else {
  // @ts-ignore (define in dts)
  window.electron = electronAPI
  // @ts-ignore (define in dts)
  window.api = api
}

from electron-toolkit.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.