2022-06-22 08:17:48 +00:00
|
|
|
---
|
|
|
|
title: 'Examples Overview'
|
|
|
|
description: 'A set of examples for common Electron features'
|
|
|
|
slug: examples
|
|
|
|
hide_title: false
|
|
|
|
---
|
|
|
|
|
|
|
|
# Examples Overview
|
|
|
|
|
|
|
|
In this section, we have collected a set of guides for common features
|
|
|
|
that you may want to implement in your Electron application. Each guide
|
|
|
|
contains a practical example in a minimal, self-contained example app.
|
|
|
|
The easiest way to run these examples is by downloading [Electron Fiddle][fiddle].
|
|
|
|
|
|
|
|
Once Fiddle is installed, you can press on the "Open in Fiddle" button that you
|
|
|
|
will find below code samples like the following one:
|
|
|
|
|
|
|
|
```fiddle docs/fiddles/quick-start
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
|
|
const replaceText = (selector, text) => {
|
|
|
|
const element = document.getElementById(selector)
|
|
|
|
if (element) element.innerText = text
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const type of ['chrome', 'node', 'electron']) {
|
|
|
|
replaceText(`${type}-version`, process.versions[type])
|
|
|
|
}
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
If there is still something that you do not know how to do, please take a look at the [API][app]
|
|
|
|
as there is a chance it might be documented just there (and also open an issue requesting the
|
|
|
|
guide!).
|
|
|
|
|
|
|
|
<!-- guide-table-start -->
|
|
|
|
|
|
|
|
| Guide | Description |
|
|
|
|
| :-------------------- | ------------------------------------------------------------------------------------------------------------------- |
|
2023-01-16 09:22:49 +00:00
|
|
|
| [Message ports][] | This guide provides some examples of how you might use MessagePorts in your app to communicate different processes. |
|
|
|
|
| [Device access][] | Learn how to access the device hardware (Bluetooth, USB, Serial). |
|
|
|
|
| [Keyboard shortcuts][] | Configure local and global keyboard shortcuts for your Electron application. |
|
|
|
|
| [Multithreading][] | With Web Workers, it is possible to run JavaScript in OS-level threads |
|
|
|
|
| [Offscreen rendering][] | Offscreen rendering lets you obtain the content of a BrowserWindow in a bitmap, so it can be rendered anywhere. |
|
|
|
|
| [Spellchecker][] | Learn how to use the built-in spellchecker, set languages, etc. |
|
|
|
|
| [Web embeds][] | Discover the different ways to embed third-party web content in your application. |
|
2022-06-22 08:17:48 +00:00
|
|
|
|
|
|
|
<!-- guide-table-end -->
|
|
|
|
|
|
|
|
## How to...?
|
|
|
|
|
|
|
|
You can find the full list of "How to?" in the sidebar. If there is
|
|
|
|
something that you would like to do that is not documented, please join
|
2022-07-05 15:55:15 +00:00
|
|
|
our [Discord server][discord] and let us know!
|
2022-06-22 08:17:48 +00:00
|
|
|
|
2022-12-05 18:18:57 +00:00
|
|
|
[app]: ../api/app.md
|
2022-07-05 15:55:15 +00:00
|
|
|
[discord]: https://discord.gg/electronjs
|
2022-06-22 08:17:48 +00:00
|
|
|
[fiddle]: https://www.electronjs.org/fiddle
|
2023-01-16 09:22:49 +00:00
|
|
|
[Message ports]: ./message-ports.md
|
|
|
|
[Device access]: ./devices.md
|
|
|
|
[Keyboard shortcuts]: ./keyboard-shortcuts.md
|
|
|
|
[Multithreading]: ./multithreading.md
|
|
|
|
[Offscreen rendering]: ./offscreen-rendering.md
|
|
|
|
[Spellchecker]: ./spellchecker.md
|
|
|
|
[Web embeds]: ./web-embeds.md
|