mimonelu on Nostr: ...
特に進捗ないので昔作った(たぶん)世界最小のNostrグローバルビューアでも貼っておきます。 `RELAY_URL` を書き換えてChromeか何かのコンソールに貼り付ければ動くと思う。知らんけど
```
(() => { const socket = new WebSocket("wss://RELAY_URL"); socket.onmessage = message => { console.log(JSON.parse(message.data)[2]?.content) }; socket.onopen = () => { socket.send(JSON.stringify(["REQ", crypto.randomUUID(), { kinds: [1], limit: 3 }])) } })()
```
```
(() => { const socket = new WebSocket("wss://RELAY_URL"); socket.onmessage = message => { console.log(JSON.parse(message.data)[2]?.content) }; socket.onopen = () => { socket.send(JSON.stringify(["REQ", crypto.randomUUID(), { kinds: [1], limit: 3 }])) } })()
```