Context Isolation in Electron JS - Detailed Explanation. Electron JS Tutorial

Поделиться
HTML-код
  • Опубликовано: 16 окт 2024
  • Context Isolation is a topic that many electron developers are confused about. Many people mix it up with inter-process communication. It has nothing to do with that.
    Context Isolation is all about security and it relates to the way the webview communicates with the preload file in Electron JS. In this video I am going to give you a detailed explanation of how it works and why it is required.
    After watching it you will have a very good understanding about the structure of Electron apps and how Context Isolation fits in the scheme.
    Got questions? Ask in the comments.

Комментарии • 6

  • @shivamchaurasiya-y1q
    @shivamchaurasiya-y1q Год назад

    Thank you!!! so much for sharing such valuable information.

  • @sathvikmalgikar2842
    @sathvikmalgikar2842 Год назад +2

    Thank you, sir, i was trying to make a file sharing application for windows in electron js and was really having a hard time with this context isolation thing, thanks for clarifying.

  • @grantvergottini5612
    @grantvergottini5612 Год назад

    So the world NOT running main.js is called the "Main" world and the world that runs Node.js and thus has access to your entire computer is called the "Isolated World" and the world that does not have access to your entire computer ISN'T called the "Isolated World".