ws.app.get('/', (req, res) => {
  ws.log('express connection - sending html');
  res.sendFile(path.join(__dirname, 'ws.html'));
});