2019-10-18 19:57:09 +00:00
# contextBridge
> Create a safe, bi-directional, synchronous bridge across isolated contexts
Process: [Renderer ](../glossary.md#renderer-process )
An example of exposing an API to a renderer from an isolated preload script is given below:
```javascript
// Preload (Isolated World)
const { contextBridge, ipcRenderer } = require('electron')
contextBridge.exposeInMainWorld(
'electron',
{
doThing: () => ipcRenderer.send('do-a-thing')
}
)
```
```javascript
// Renderer (Main World)
window.electron.doThing()
```
## Glossary
### Main World
2020-01-27 23:14:54 +00:00
The "Main World" is the JavaScript context that your main renderer code runs in. By default, the
page you load in your renderer executes code in this world.
2019-10-18 19:57:09 +00:00
### Isolated World
2020-01-27 23:14:54 +00:00
When `contextIsolation` is enabled in your `webPreferences` , your `preload` scripts run in an
"Isolated World". You can read more about context isolation and what it affects in the
[security ](../tutorial/security.md#3-enable-context-isolation-for-remote-content ) docs.
2019-10-18 19:57:09 +00:00
## Methods
The `contextBridge` module has the following methods:
2019-10-18 20:46:03 +00:00
### `contextBridge.exposeInMainWorld(apiKey, api)` _Experimental_
2019-10-18 19:57:09 +00:00
* `apiKey` String - The key to inject the API onto `window` with. The API will be accessible on `window[apiKey]` .
* `api` Record< String , any > - Your API object, more information on what this API can be and how it works is available below.
## Usage
### API Objects
2019-10-18 20:46:03 +00:00
The `api` object provided to [`exposeInMainWorld` ](#contextbridgeexposeinmainworldapikey-api-experimental ) must be an object
2020-01-27 23:14:54 +00:00
whose keys are strings and values are a `Function` , `String` , `Number` , `Array` , `Boolean` , or another nested object that meets the same conditions.
2019-10-18 19:57:09 +00:00
2020-01-27 23:14:54 +00:00
`Function` values are proxied to the other context and all other values are **copied** and **frozen** . Any data / primitives sent in
2019-10-18 19:57:09 +00:00
the API object become immutable and updates on either side of the bridge do not result in an update on the other side.
2020-01-27 23:14:54 +00:00
An example of a complex API object is shown below:
2019-10-18 19:57:09 +00:00
```javascript
const { contextBridge } = require('electron')
contextBridge.exposeInMainWorld(
'electron',
{
doThing: () => ipcRenderer.send('do-a-thing'),
myPromises: [Promise.resolve(), Promise.reject(new Error('whoops'))],
anAsyncFunction: async () => 123,
data: {
myFlags: ['a', 'b', 'c'],
bootTime: 1234
},
nestedAPI: {
evenDeeper: {
youCanDoThisAsMuchAsYouWant: {
fn: () => ({
returnData: 123
})
}
}
}
}
)
```
### API Functions
`Function` values that you bind through the `contextBridge` are proxied through Electron to ensure that contexts remain isolated. This
results in some key limitations that we've outlined below.
#### Parameter / Error / Return Type support
2020-01-27 23:14:54 +00:00
Because parameters, errors and return values are **copied** when they are sent over the bridge, there are only certain types that can be used.
At a high level, if the type you want to use can be serialized and deserialized into the same object it will work. A table of type support
has been included below for completeness:
2019-10-18 19:57:09 +00:00
| Type | Complexity | Parameter Support | Return Value Support | Limitations |
| ---- | ---------- | ----------------- | -------------------- | ----------- |
| `String` | Simple | ✅ | ✅ | N/A |
| `Number` | Simple | ✅ | ✅ | N/A |
| `Boolean` | Simple | ✅ | ✅ | N/A |
2020-01-27 23:14:54 +00:00
| `Object` | Complex | ✅ | ✅ | Keys must be supported using only "Simple" types in this table. Values must be supported in this table. Prototype modifications are dropped. Sending custom classes will copy values but not the prototype. |
2019-10-18 19:57:09 +00:00
| `Array` | Complex | ✅ | ✅ | Same limitations as the `Object` type |
| `Error` | Complex | ✅ | ✅ | Errors that are thrown are also copied, this can result in the message and stack trace of the error changing slightly due to being thrown in a different context |
2020-01-27 23:14:54 +00:00
| `Promise` | Complex | ✅ | ✅ | Promises are only proxied if they are the return value or exact parameter. Promises nested in arrays or objects will be dropped. |
2019-10-18 19:57:09 +00:00
| `Function` | Complex | ✅ | ✅ | Prototype modifications are dropped. Sending classes or constructors will not work. |
| [Cloneable Types ](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm ) | Simple | ✅ | ✅ | See the linked document on cloneable types |
| `Symbol` | N/A | ❌ | ❌ | Symbols cannot be copied across contexts so they are dropped |
2020-01-27 23:14:54 +00:00
If the type you care about is not in the above table, it is probably not supported.