UNPKG

@tanislav000/bluetooth-socket

Version:

Node.JS Socket for communication with AF_BLUETOOTH sockets

7 lines 138 B
const BS = require("."); const s = new BS(0); s.on("data", console.log); s.write("Test\n"); setTimeout(()=>{ s.end("end\n"); }, 3000);