'Which browser control does electron use to create a custom browser?

I want to create a custom browser using electron. I am new to electron and want to know that which browser control does electron use (chrome, IE, etc)?



Solution 1:[1]

There are some great resources on the web that will answer your question. Use your favourite search engine to find out more.

That said, at a basic level What is Electron? will get you started.

Essentially, Electron is built upon:

  • The Chromium rendering engine. (The rendering engine used by Google Chrome)
  • Node.js
  • A whole bunch of C++ scripts (among others)

If is an open source project which can be viewed at https://github.com/electron/electron.

Poke around in the source code if you want a deeper understanding of how it is put together / works.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 midnight-coding