see also
This commit is contained in:
parent
e57cb713b2
commit
aeedd36168
1 changed files with 6 additions and 0 deletions
|
@ -46,6 +46,8 @@ The full Node API is built in.
|
|||
Every app's main process file is specified in the `main` property in
|
||||
`package.json`. This is how `electron .` knows what file to execute at startup.
|
||||
|
||||
See also: [process](#process), [renderer process](#renderer-process)
|
||||
|
||||
### MAS
|
||||
|
||||
Acronym for Apple's Mac App Store. For details on submitting your app to the
|
||||
|
@ -85,6 +87,8 @@ object is a global that provides information about, and control over, the
|
|||
current process. As a global, it is always available to applications without
|
||||
using require().
|
||||
|
||||
See also: [main process](#main-process), [renderer process](#renderer-process)
|
||||
|
||||
### renderer process
|
||||
|
||||
The renderer process is a browser window in your app. Unlike the main process,
|
||||
|
@ -96,6 +100,8 @@ allowed access to native resources. Electron users, however, have the power to
|
|||
use Node.js APIs in web pages allowing lower level operating system
|
||||
interactions.
|
||||
|
||||
See also: [process](#process), [main process](#main-process)
|
||||
|
||||
### Squirrel
|
||||
|
||||
Squirrel is an open-source framework that enables Electron apps to update
|
||||
|
|
Loading…
Reference in a new issue