From aeedd361684187872464bf4efd2338f494f4eaea Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Wed, 21 Dec 2016 13:47:17 -0800 Subject: [PATCH] see also --- docs/glossary.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/glossary.md b/docs/glossary.md index 1684b86f7a4..d75a67b8b1e 100644 --- a/docs/glossary.md +++ b/docs/glossary.md @@ -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