integrating basic websocket

This commit is contained in:
Josh Burman
2019-02-28 17:49:46 -05:00
parent 9d4a09b8bd
commit b8282bf009
720 changed files with 1573910 additions and 18 deletions

8
node_modules/ws/browser.js generated vendored Executable file
View File

@ -0,0 +1,8 @@
'use strict';
module.exports = function() {
throw new Error(
'ws does not work in the browser. Browser clients must use the native ' +
'WebSocket object'
);
};