This is a proxy-transports transport using the TompHTTP Bare Server.
Here is a basic example of using bare-transport. The Bare server is specified in the first argument.
import BareClient from "@mercuryworkshop/bare-transport";
let client = new BareClient("https://example.com/bare/");
// pass to proxyYou can also use the non-esm build
<script src="https://unpkg.com/@mercuryworkshop/bare-transport@2/dist/index.js"></script>
<script>
let client = new BareMod.BareClient("https://example.com/bare/");
</script>