We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 816f850 commit a256580Copy full SHA for a256580
1 file changed
readme.md
@@ -53,7 +53,7 @@ Too much boilerplate.
53
#### UI (main window)
54
55
```js
56
-import { pair } from "https://xjsdev.github.io/iorpc/index.js";
+import { pair } from "https://unpkg.com/iorpc/index.esm.js";
57
58
const worker = new Worker("worker.js");
59
@@ -71,7 +71,7 @@ async function run() {
71
---
72
#### Worker (worker.js)
73
74
-importScripts("https://xjsdev.github.io/iorpc/index.js");
+importScripts("https://unpkg.com/iorpc/index.js");
75
76
const { local, remote } = iorpc.pair({
77
send: msg => postMessage(msg),
0 commit comments