이번에는 nodejs에서 websocket을 사용하는 방법(코드 포함)을 알려드리겠습니다. nodejs에서 websocket을 사용할 때 주의사항은 무엇인가요?
npm install ws
Server (nodejs):
var WebSocketServer = require('ws').Server, wss = new WebSocketServer({ port: 8080 }); wss.on('connection', function (ws) { console.log('client connected'); ws.on('message', function (message) { console.log(message); }); });
Client:
<script> var ws = new WebSocket("ws://localhost:8080"); ws.onopen = function (e) { console.log('Connection to server opened'); sendMessage(); } function sendMessage() { ws.send('hello'); } </script>
이 글의 사례를 읽으신 후 방법을 숙지하셨다고 생각합니다. 기타 관련 기사는 PHP 중국어 웹사이트에 있습니다!
추천 자료:
vuex 프로젝트 구조 디렉터리 및 구성 사용법에 대한 자세한 설명
위 내용은 nodejs에서 websocket을 사용하는 방법(코드 포함)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!