이 글은 websocket을 사용하여 네이티브 nodejs에서 정보 전송을 구현하는 방법을 공유합니다. 매우 실용적입니다. 도움이 필요한 친구가 참고할 수 있습니다.
설치:
npm install ws
서버(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); }); });
클라이언트:
<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>
위 내용은 제가 모든 사람을 위해 정리한 내용입니다. 앞으로 모든 사람에게 도움이 되기를 바랍니다.
관련 기사:
페이지의 특정 콘텐츠를 정기적으로 업데이트하는 Ajax 메서드
위 내용은 네이티브 nodejs는 웹소켓 코드 공유를 사용합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!