layout.jade 347 B

12345678910111213141516
  1. doctype html
  2. html
  3. head
  4. title= title
  5. link(rel='stylesheet', href='/stylesheets/style.css')
  6. script(src='/socket.io/socket.io.js')
  7. script.
  8. var socket = io();
  9. socket.on('users_update', function(msg) {
  10. console.log(msg);
  11. });
  12. // socket.emit('chat message', input.value);
  13. body
  14. block content