Node.js
Node.JS와 함께 WebSocket 사용하기
수색…
웹 소켓 설치하기
프로젝트에 WebSocket을 설치하는 몇 가지 방법이 있습니다. 여기 예시들이 있습니다:
npm install --save ws
또는 귀하의 package.json 내부 :
"dependencies": {
"ws": "*"
},
WebSocket을 파일에 추가하기
파일에 ws를 추가하려면 다음을 사용하십시오.
var ws = require('ws');
WebSocket 및 WebSocket 서버 사용
새 WebSocket을 열려면 다음과 같이 추가하십시오.
var WebSocket = require("ws");
var ws = new WebSocket("ws://host:8080/OptionalPathName);
// Continue on with your code...
또는 서버를 열려면 다음을 사용하십시오.
var WebSocketServer = require("ws").Server;
var ws = new WebSocketServer({port: 8080, path: "OptionalPathName"});
간단한 WebSocket 서버 예제
var WebSocketServer = require('ws').Server
, wss = new WebSocketServer({ port: 8080 }); // If you want to add a path as well, use path: "PathName"
wss.on('connection', function connection(ws) {
ws.on('message', function incoming(message) {
console.log('received: %s', message);
});
ws.send('something');
});
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow