Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@titaniumnetwork-dev/ultraviolet

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@titaniumnetwork-dev/ultraviolet - npm Package Versions

1345

3.2.0

Diff

Changelog

Source

v3.2.0

  • This version of Ultraviolet upgrades bare-mux. This moves all of the bare client logic to a shared worker.
percslol
published 3.1.5 •

Changelog

Source

v3.1.5

  • This version of Ultraviolet upgrades bare-mux. This allows the websocket to be properly closed by windows.
percslol
published 3.1.4 •

Changelog

Source

v3.1.4

  • This version of Ultraviolet fixes an NPM versioning error.
percslol
published 3.1.3 •

Changelog

Source

v3.1.3

  • This version of Ultraviolet upgrades bare-mux. This solves an issue with the types and exports being incorrect.
percslol
published 3.1.2 •

Changelog

Source

v3.1.2

  • This version of Ultraviolet cleans up some service worker code to make it faster, and also simplifies the service worker by adding uv.route() which allows the service worker to easily detect if the worker should route this request.
importScripts("uv.bundle.js");
importScripts("uv.config.js");
importScripts(__uv$config.sw || "uv.sw.js");

const uv = new UVServiceWorker();

self.addEventListener("fetch", (event) => {
	event.respondWith(
		(async () => {
			if (uv.route(event)) {
				return await uv.fetch(event);
			}
			return await fetch(event.request);
		})()
	);
});
percslol
published 3.1.1 •

Changelog

Source

v3.1.1

  • This version of Ultraviolet upgrades bare-mux. This solves an issue with the bare clients not being found.
percslol
published 3.1.0 •

Changelog

Source

v3.1.0

  • This version of Ultraviolet upgrades bare-mux. This solves an issue with websockets not reporting the ready state correctly, causing incompatibilities on websites.
coolelectronics
published 3.0.2 •

Changelog

Source

v3.0.2

  • This version of Ultraviolet fixes an NPM versioning error.
coolelectronics
published 3.0.1 •

Changelog

Source

v3.0.1

  • This version of Ultraviolet upgrades bare-mux. This solves an issue with websockets not being opened properly.
  • This version of Ultraviolet allows error messages to be iframed on cross origin isolated pages.
coolelectronics
published 3.0.0 •

Changelog

Source

v3.0.0

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc