aboutsummaryrefslogtreecommitdiffstats
path: root/extension/background.js
blob: 3fa39c1f97d8d901fe111c1e0cb2a31182cbdec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
const ws = new WebSocket("ws://localhost:8888");

ws.onmessage = function(event) {
  const req = JSON.parse(event.data);

  const response = {
    names: [".", "..", "hi.txt"]
  };

  ws.send(JSON.stringify(response));
};