Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 621 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 621 Bytes

ultraviolet-scripts

Core Ultraviolet scripts

Configuration

Configure Ultraviolet for both client-hooking & service worker in uv.config.js

self.__uv$config = {
    bare: '/bare/',
    prefix: '/service/',
    encodeUrl: Ultraviolet.codec.xor.encode,
    decodeUrl: Ultraviolet.codec.xor.decode,
    handler: '/uv.handler.js',
    bundle: '/uv.bundle.js',
    config: '/uv.config.js',
};

Example Usage

importScripts('/PATHTOSCRIPTS/uv.sw.js');

const sw = new UVServiceWorker();

self.addEventListener('fetch', event =>
    event.respondWith(
        sw.fetch(event)
    )
);