1. 程式人生 > >【轉】windows下使用WebSocket-Node搭建WebSocket伺服器

【轉】windows下使用WebSocket-Node搭建WebSocket伺服器

第一步:安裝好node.js和npm
這個就不贅述了.
在dos命令下測試

第二步:安裝WebSocket-Node模組

Node.js command prompt輸入命令

npm install websocket

記住,不要全域性安裝,不然後續呼叫模組的時候會報類似的Error: Cannot find module 'websocket'錯.

第三步:windows下安裝Microsoft Visual C++和Python 2.7

(windows下面才需要安裝..)一般情況下windows下都會安裝有Microsoft Visual C++,所以我們需要繼續安裝

Python 2.7.10下載

第四步:測試WebSocket伺服器

建立ws.js檔案
輸入程式碼(直接從WebSocket-Node模組裡面拷貝下來的)

[javascript] view plain copy

  1. #!/usr/bin/env node  
  2. var WebSocketServer = require('websocket').server;  
  3. var http = require('http');  
  4. var server = http.createServer(function(request, response) {  
  5.     console.log((new
     Date()) + ' Received request for ' + request.url);  
  6.     response.writeHead(404);  
  7.     response.end();  
  8. });  
  9. server.listen(8080, function() {  
  10.     console.log((new Date()) + ' Server is listening on port 8080');  
  11. });  
  12. wsServer = new WebSocketServer({  
  13.     httpServer: server,  
  14.     // You should not use autoAcceptConnections for production
      
  15.     // applications, as it defeats all standard cross-origin protection  
  16.     // facilities built into the protocol and the browser.  You should  
  17.     // *always* verify the connection's origin and decide whether or not  
  18.     // to accept it.  
  19.     autoAcceptConnections: false  
  20. });  
  21. function originIsAllowed(origin) {  
  22.   // put logic here to detect whether the specified origin is allowed.  
  23.   return true;  
  24. }  
  25. wsServer.on('request'function(request) {  
  26.     if (!originIsAllowed(request.origin)) {  
  27.       // Make sure we only accept requests from an allowed origin  
  28.       request.reject();  
  29.       console.log((new Date()) + ' Connection from origin ' + request.origin + ' rejected.');  
  30.       return;  
  31.     }  
  32.     var connection = request.accept('echo-protocol', request.origin);  
  33.     console.log((new Date()) + ' Connection accepted.');  
  34.     connection.on('message'function(message) {  
  35.         if (message.type === 'utf8') {  
  36.             console.log('Received Message: ' + message.utf8Data);  
  37.             connection.sendUTF(message.utf8Data);  
  38.         }  
  39.         else if (message.type === 'binary') {  
  40.             console.log('Received Binary Message of ' + message.binaryData.length + ' bytes');  
  41.             connection.sendBytes(message.binaryData);  
  42.         }  
  43.     });  
  44.     connection.on('close'function(reasonCode, description) {  
  45.         console.log((new Date()) + ' Peer ' + connection.remoteAddress + ' disconnected.');  
  46.     });  
  47. });  

Node.js command promp命令cd到你建立的js檔案所在目錄下面.執行

node ws.js

結果如圖

使用chrome瀏覽器測試

新建一個html檔案

  1. <!doctype html>  
  2. <html lang="en">  
  3. <head>  
  4.     <meta charset="UTF-8">  
  5.     <title>Document</title>  
  6. </head>  
  7. <body>  
  8.     <button type="button" id="start" onclick="start()">start</button>  
  9.     <script>  
  10.     function start(){  
  11.         var client = new WebSocket('ws://localhost:8080/', 'echo-protocol');  
  12.         client.onerror = function() {  
  13.             console.log('Connection Error');  
  14.         };  
  15.         client.onopen = function() {  
  16.             console.log('WebSocket Client Connected');  
  17.             function sendNumber() {  
  18.                 if (client.readyState === client.OPEN) {  
  19.                     var number = Math.round(Math.random() * 0xFFFFFF);  
  20.                     client.send(number.toString());  
  21.                     setTimeout(sendNumber, 1000);  
  22.                 }  
  23.             }  
  24.             sendNumber();  
  25.         };  
  26.         client.onclose = function() {  
  27.             console.log('echo-protocol Client Closed');  
  28.         };  
  29.         client.onmessage = function(e) {  
  30.             if (typeof e.data === 'string') {  
  31.                 console.log("Received: '" + e.data + "'");  
  32.             }  
  33.         };  
  34.     }  
  35.     </script>  
  36. </body>  
  37. </html>