溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ws是不是nodejs的內(nèi)置模塊

發(fā)布時間:2021-12-31 12:17:05 來源:億速云 閱讀:141 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)ws是不是nodejs的內(nèi)置模塊的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

ws不是nodejs的內(nèi)置模塊。ws是nodejs的一個WebSocket庫,可以用來創(chuàng)建服務(wù),需要通過“npm install ws”命令進行安裝后才可使用,因此不是nodejs內(nèi)置的模塊。

本教程操作環(huán)境:windows7系統(tǒng)、nodejs 12.19.0版,DELL G3電腦。

ws:是nodejs的一個WebSocket庫,可以用來創(chuàng)建服務(wù)。 https://github.com/websockets/ws

nodejs使用ws模塊

首先下載websocket模塊,命令行輸入

npm install ws

ws是不是nodejs的內(nèi)置模塊

1.node.js中ws模塊創(chuàng)建服務(wù)端(ser.js)

// 加載node上websocket模塊 ws;
var ws = require("ws");

// 啟動基于websocket的服務(wù)器,監(jiān)聽我們的客戶端接入進來。
var server = new ws.Server({
	host: "127.0.0.1",
	port: 6080,
});

// 監(jiān)聽接入進來的客戶端事件
function websocket_add_listener(client_sock) {
	// close事件
	client_sock.on("close", function() {
		console.log("client close");
	});

	// error事件
	client_sock.on("error", function(err) {
		console.log("client error", err);
	});
	// end 

	// message 事件, data已經(jīng)是根據(jù)websocket協(xié)議解碼開來的原始數(shù)據(jù);
	// websocket底層有數(shù)據(jù)包的封包協(xié)議,所以,絕對不會出現(xiàn)粘包的情況。
	// 每解一個數(shù)據(jù)包,就會觸發(fā)一個message事件;
	// 不會出現(xiàn)粘包的情況,send一次,就會把send的數(shù)據(jù)獨立封包。
	// 如果我們是直接基于TCP,我們要自己實現(xiàn)類似于websocket封包協(xié)議就可以完全達到一樣的效果;
	client_sock.on("message", function(data) {
		console.log(data);
		client_sock.send("Thank you!");
	});
	// end 
}

// connection 事件, 有客戶端接入進來;
function on_server_client_comming (client_sock) {
	console.log("client comming");
	websocket_add_listener(client_sock);
}

server.on("connection", on_server_client_comming);

// error事件,表示的我們監(jiān)聽錯誤;
function on_server_listen_error(err) {

}
server.on("error", on_server_listen_error);

// headers事件, 回給客戶端的字符。
function on_server_headers(data) {
	// console.log(data);
}
server.on("headers", on_server_headers);

2.node.js中ws模塊創(chuàng)建客戶端(client.js)

var ws = require("ws");

// url ws://127.0.0.1:6080
// 創(chuàng)建了一個客戶端的socket,然后讓這個客戶端去連接服務(wù)器的socket
var sock = new ws("ws://127.0.0.1:6080");
sock.on("open", function () {
	console.log("connect success !!!!");
	sock.send("HelloWorld1");
	sock.send("HelloWorld2");
	sock.send("HelloWorld3");
	sock.send("HelloWorld4");
	sock.send(Buffer.alloc(10));
});

sock.on("error", function(err) {
	console.log("error: ", err);
});

sock.on("close", function() {
	console.log("close");
});

sock.on("message", function(data) {
	console.log(data);
});

3.網(wǎng)頁客戶端創(chuàng)建(使用WebApi --->WebSocket)   index.html

<!DOCTYPE html>
<html>
<head>
	<title>websocket example</title>
</head>
<body>
	<script>
	var ws = new WebSocket("ws://127.0.0.1:6080/index.html");
	
	ws.onopen = function(){
		alert("open");
		ws.send("WebSocket  hellowrold!!");
	};
	ws.onmessage = function(ev){
		alert(ev.data);
	};
	ws.onclose = function(ev){
		alert("close");
	};
	ws.onerror = function(ev){
		console.log(ev);
		alert("error");
	};
	</script>
</body>
</html>

感謝各位的閱讀!關(guān)于“ws是不是nodejs的內(nèi)置模塊”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI