electron/docs/api/process.md

14 lines
468 B
Markdown
Raw Normal View History

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