This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Numbers | |
set number | |
set relativenumber | |
" Indentation | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=0 | |
set noexpandtab | |
set list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const WebSocketServer = require('websocket').server | |
const WebSocketClient = require('websocket').client | |
const http = require('http') | |
const command = process.argv[2] | |
if (command === undefined) { | |
console.log('Please provide a command: server or client') | |
process.exit(1) | |
} |