electron/docs/api/process.md

48 lines
1.3 KiB
Markdown
Raw Normal View History

2015-09-01 23:21:29 +00:00
# process
2015-06-07 01:42:21 +00:00
The `process` object in Electron has the following differences from the one in
upstream node:
2015-08-29 04:47: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.
* `process.versions['chrome']` String - Version of Chromium.
2014-10-25 23:00:23 +00:00
* `process.resourcesPath` String - Path to JavaScript source code.
2015-10-16 09:15:23 +00:00
* `process.mas` Boolean - For Mac App Store build, this value is `true`, for
other builds it is `undefined`.
2015-06-17 14:43:43 +00:00
2015-10-05 03:41:36 +00:00
## Events
### Event: 'loaded'
Emitted when Electron has loaded its internal initialization script and is
beginning to load the web page or the main script.
It can be used by the preload script to add removed Node global symbols back to
the global scope when node integration is turned off:
```js
// preload.js
var _setImmediate = setImmediate;
var _clearImmediate = clearImmediate;
2015-10-05 03:41:36 +00:00
process.once('loaded', function() {
global.setImmediate = _setImmediate;
global.clearImmediate = _clearImmediate;
2015-10-05 03:41:36 +00:00
});
```
## Methods
2015-08-29 04:47:31 +00:00
The `process` object has the following method:
### `process.hang`
2015-06-17 14:43:43 +00:00
Causes the main thread of the current process hang.
2015-10-16 09:15:23 +00:00
### `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.