2015-09-01 16:21:29 -07:00
|
|
|
# process
|
2014-05-23 22:56:56 +08:00
|
|
|
|
2015-06-06 21:42:21 -04:00
|
|
|
The `process` object in Electron has the following differences from the one in
|
2014-05-23 22:56:56 +08:00
|
|
|
upstream node:
|
|
|
|
|
2015-08-28 21:47:31 -07:00
|
|
|
* `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.
|
2014-10-02 23:48:17 +08:00
|
|
|
* `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
|
|
|
|
2015-08-28 21:47:31 -07:00
|
|
|
# Methods
|
|
|
|
|
|
|
|
The `process` object has the following method:
|
|
|
|
|
|
|
|
### `process.hang`
|
2015-06-17 20:13:43 +05:30
|
|
|
|
|
|
|
Causes the main thread of the current process hang.
|
2015-08-29 20:44:52 +05:30
|
|
|
|
|
|
|
## process.setFdLimit(maxDescriptors) _OS X_ _Linux_
|
|
|
|
|
|
|
|
* `maxDescriptors` Integer
|
|
|
|
|
|
|
|
Sets the file descriptor soft limit to `maxDescriptors` or the OS hard
|
|
|
|
limit, whichever is lower for the current process.
|