electron/docs/tutorial/quick-start.md

23 lines
738 B
Markdown
Raw Normal View History

2015-08-31 19:18:46 -07:00
# Quick Start
2013-09-09 15:35:57 +08:00
2015-08-31 19:18:46 -07: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
as a variant of the Node.js runtime that is focused on desktop applications
2015-08-31 19:18:46 -07:00
instead of web servers.
2013-08-14 15:43:35 -07:00
The old "Quick Start" document that used to live here has been split up into
two documents:
2013-08-14 15:43:35 -07: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 15:43:35 -07:00
To learn more about Electron, check out the
[official guides][readme].
[first-app]: ./first-app.md
2018-02-19 18:25:02 -06:00
[processes]: ./application-architecture.md#main-and-renderer-processes
[readme]: ../