titaniumnetwork-dev / Ultraviolet-Core

Core scripts for Ultraviolet installations. TOMP bare server not included.

Home Page:https://ultravioletsw.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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)
    )
);

About

Core scripts for Ultraviolet installations. TOMP bare server not included.

https://ultravioletsw.dev


Languages

Language:JavaScript 100.0%