protocol

    Process: Main

    An example of implementing a protocol that has the same effect as the file:// protocol:

    Note: All methods unless specified can only be used after the ready event of the app module gets emitted.

    A protocol is registered to a specific Electron object. If you don’t specify a session, then your protocol will be applied to the default session that Electron uses. However, if you define a partition or session on your browserWindow‘s webPreferences, then that window will use a different session and your custom protocol will not work if you just use electron.protocol.XXX.

    To have your custom protocol work in combination with a custom session, you need to register it to that session explicitly.

    1. const { session, app, protocol } = require('electron')
    2. const path = require('path')
    3. app.whenReady().then(() => {
    4. const partition = 'persist:example'
    5. const ses = session.fromPartition(partition)
    6. ses.protocol.registerFileProtocol('atom', (request, callback) => {
    7. const url = request.url.substr(7)
    8. callback({ path: path.normalize(`${__dirname}/${url}`) })
    9. })
    10. mainWindow = new BrowserWindow({ webPreferences: { partition } })
    11. })

    Methods

    The protocol module has the following methods:

    • customSchemes

    Note: This method can only be used before the ready event of the app module gets emitted and can be called only once.

    Registers the scheme as standard, secure, bypasses content security policy for resources, allows registering ServiceWorker, supports fetch API, and streaming video/audio. Specify a privilege with the value of true to enable the capability.

    An example of registering a privileged scheme, that bypasses Content Security Policy:

    A standard scheme adheres to what RFC 3986 calls generic URI syntax. For example http and https are standard schemes, while file is not.

    Registering a scheme as standard allows relative and absolute resources to be resolved correctly when served. Otherwise the scheme will behave like the file protocol, but without the ability to resolve relative URLs.

    For example when you load following page with custom protocol without registering it as standard scheme, the image will not be loaded because non-standard schemes can not recognize relative URLs:

    1. <body>
    2. <img src='test.png'>
    3. </body>

    Registering a scheme as standard will allow access to files through the . Otherwise the renderer will throw a security error for the scheme.

    By default web storage apis (localStorage, sessionStorage, webSQL, indexedDB, cookies) are disabled for non standard schemes. So in general if you want to register a custom protocol to replace the http protocol, you have to register it as a standard scheme.

    Protocols that use streams (http and stream protocols) should set stream: true. The <video> and <audio> HTML elements expect protocols to buffer their responses by default. The stream flag configures those elements to correctly expect streaming responses.

    protocol.registerFileProtocol(scheme, handler)

    • handler Function

    Returns boolean - Whether the protocol was successfully registered

    To handle the request, the callback should be called with either the file’s path or an object that has a path property, e.g. callback(filePath) or callback({ path: filePath }). The filePath must be an absolute path.

    By default the scheme is treated like http:, which is parsed differently from protocols that follow the “generic URI syntax” like file:.

    protocol.registerBufferProtocol(scheme, handler)

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully registered

    Registers a protocol of scheme that will send a Buffer as a response.

    The usage is the same with registerFileProtocol, except that the callback should be called with either a Buffer object or an object that has the data property.

    Example:

    protocol.registerStringProtocol(scheme, handler)

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully registered

    Registers a protocol of scheme that will send a string as a response.

    The usage is the same with registerFileProtocol, except that the callback should be called with either a string or an object that has the data property.

    protocol.registerHttpProtocol(scheme, handler)

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully registered

    Registers a protocol of scheme that will send an HTTP request as a response.

    The usage is the same with registerFileProtocol, except that the callback should be called with an object that has the url property.

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully registered

    Registers a protocol of scheme that will send a stream as a response.

    The usage is the same with registerFileProtocol, except that the callback should be called with either a object or an object that has the data property.

    Example:

    1. const { protocol } = require('electron')
    2. const { PassThrough } = require('stream')
    3. function createStream (text) {
    4. const rv = new PassThrough() // PassThrough is also a Readable stream
    5. rv.push(text)
    6. rv.push(null)
    7. return rv
    8. }
    9. protocol.registerStreamProtocol('atom', (request, callback) => {
    10. statusCode: 200,
    11. headers: {
    12. 'content-type': 'text/html'
    13. },
    14. data: createStream('<h5>Response</h5>')
    15. })
    16. })

    protocol.unregisterProtocol(scheme)

    • scheme string

    Returns boolean - Whether the protocol was successfully unregistered

    Unregisters the custom protocol of scheme.

    protocol.isProtocolRegistered(scheme)

    • scheme string

    Returns boolean - Whether scheme is already registered.

    protocol.interceptFileProtocol(scheme, handler)

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully intercepted

    Intercepts scheme protocol and uses handler as the protocol’s new handler which sends a file as a response.

    protocol.interceptStringProtocol(scheme, handler)

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully intercepted

    Intercepts scheme protocol and uses handler as the protocol’s new handler which sends a string as a response.

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully intercepted

    Intercepts scheme protocol and uses handler as the protocol’s new handler which sends a Buffer as a response.

    protocol.interceptHttpProtocol(scheme, handler)

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully intercepted

    Intercepts scheme protocol and uses handler as the protocol’s new handler which sends a new HTTP request as a response.

    protocol.interceptStreamProtocol(scheme, handler)

    • scheme string
    • handler Function

    Returns boolean - Whether the protocol was successfully intercepted

    Same as protocol.registerStreamProtocol, except that it replaces an existing protocol handler.

    protocol.uninterceptProtocol(scheme)

    • scheme string

    Returns boolean - Whether the protocol was successfully unintercepted

    Remove the interceptor installed for scheme and restore its original handler.

    protocol.isProtocolIntercepted(scheme)

    Returns boolean - Whether scheme is already intercepted.