2015-09-01 02:18:46 +00:00
|
|
|
# Quick Start
|
2013-09-09 07:35:57 +00:00
|
|
|
|
2015-09-01 02:18:46 +00:00
|
|
|
Electron enables you to create desktop applications with pure JavaScript by
|
|
|
|
providing a runtime with rich native (operating system) APIs. You could see it
|
2015-10-05 18:12:29 +00:00
|
|
|
as a variant of the Node.js runtime that is focused on desktop applications
|
2015-09-01 02:18:46 +00:00
|
|
|
instead of web servers.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2018-02-19 23:14:31 +00:00
|
|
|
The old "Quick Start" document that used to live here has been split up into
|
|
|
|
two documents:
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2018-02-19 23:14:31 +00:00
|
|
|
* To check out how a simple Electron app is built, see
|
|
|
|
[Writing Your First Electron App][first-app]
|
|
|
|
* To check out the process architecture, see
|
|
|
|
[Main and Renderer Processes][processes].
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2018-05-08 05:16:09 +00:00
|
|
|
To learn more about Electron, check out the
|
2018-02-19 23:14:31 +00:00
|
|
|
[official guides][readme].
|
2014-04-30 08:39:49 +00:00
|
|
|
|
2018-02-19 23:14:31 +00:00
|
|
|
[first-app]: ./first-app.md
|
2018-02-20 00:25:02 +00:00
|
|
|
[processes]: ./application-architecture.md#main-and-renderer-processes
|
2018-05-16 17:23:46 +00:00
|
|
|
[readme]: ../
|
2014-04-30 08:39:49 +00:00
|
|
|
|