Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 197 Bytes

File metadata and controls

13 lines (9 loc) · 197 Bytes

QRSocket

Send stuff back and forward with QR Codes.

const socket = new QRSocket();

socket.on("message", (message) => {
  console.log(message.data);
});

socket.send("Hello World!");