2014-05-23 14:56:56 +00:00
|
|
|
# Process object
|
|
|
|
|
2015-06-07 01:42:21 +00:00
|
|
|
The `process` object in Electron has the following differences from the one in
|
2014-05-23 14:56:56 +00:00
|
|
|
upstream node:
|
|
|
|
|
2015-03-26 15:20:31 +00:00
|
|
|
* `process.type` String - Process's type, can be `browser` (i.e. main process) or `renderer`.
|
2015-04-16 03:31:12 +00:00
|
|
|
* `process.versions['electron']` String - Version of Electron.
|
2014-10-02 15:48:17 +00:00
|
|
|
* `process.versions['chrome']` String - Version of Chromium.
|
2014-10-25 23:00:23 +00:00
|
|
|
* `process.resourcesPath` String - Path to JavaScript source code.
|
2015-06-17 14:43:43 +00:00
|
|
|
|
|
|
|
## process.hang
|
|
|
|
|
|
|
|
Causes the main thread of the current process hang.
|