Giter VIP home page Giter VIP logo

firesale-tutorial's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

firesale-tutorial's Issues

Sending Content to the Renderer Process

In the step where we replace the console.log in openFile function of the main process with the following:
mainWindow.webContents.send('file-opened', file, content);
Then writing renderer code

The md file I picked to display in the console was not sent to the renderer process until I decide to put the line above inside this

mainWindow.webContents.on('did-finish-load', () => {
  mainWindow.webContents.send('file-opened', file, content);
});

according to webContents API documentation

did-finish-load is emitted when the navigation is done.

ipc.on event not firing

Can't say for sure why, but in case anyone runs into this issue, you need to wait until the mainWindow.webContents finished loading.

From its doc at: https://github.com/electron/electron/blob/master/docs/api/web-contents.md

  win.webContents.on('did-finish-load', () => {
    win.webContents.send('ping', 'whoooooooh!');
  });

The send function only works without the 'did finish load' callback later on in the tutorial, when it comes to the open file dialog fired by the on click event.

Can anyone explain, why?

npm start vs electron .

I am noticing that when I run the app via

npm start
I am able to access the remote module from renderer, but when i run it as
electron .
I see this error on the console.
Uncaught Error: Cannot find module 'remote'
Would you know why

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.