From e2b44da43a4d6a531cb5fda9c7ef52a4ce29ec89 Mon Sep 17 00:00:00 2001 From: Toshit Chawda Date: Sat, 27 Jul 2024 12:06:58 -0700 Subject: [PATCH] remove web worker requirement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 310efd6..8780008 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Epoxy is an encrypted proxy for browser javascript. It allows you to make requests that bypass CORS without compromising security, by running SSL/TLS inside webassembly. ## Using the client -Epoxy must be run from within a web worker and must be served with the [security headers needed for `SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer#security_requirements). Here is a simple usage example: +Epoxy must be served with the [security headers needed for `SharedArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer#security_requirements). Here is a simple usage example: ```javascript import epoxy from "./epoxy-module-bundled.js"; import ROOTS from "./pkg/certs-module.js";