ws是nodejs的內建模組嗎

2021-12-31 13:00:07

ws不是nodejs的內建模組。ws是nodejs的一個WebSocket庫,可以用來建立服務,需要通過「npm install ws」命令進行安裝後才可使用,因此不是nodejs內建的模組。

本教學操作環境:windows7系統、nodejs 12.19.0版,DELL G3電腦。

ws不是nodejs的內建模組。

ws:是nodejs的一個WebSocket庫,可以用來建立服務。 https://github.com/websockets/ws

nodejs使用ws模組

首先下載websocket模組,命令列輸入

npm install ws

1.node.js中ws模組建立伺服器端(ser.js)

// 載入node上websocket模組 ws;
var ws = require("ws");

// 啟動基於websocket的伺服器,監聽我們的使用者端接入進來。
var server = new ws.Server({
	host: "127.0.0.1",
	port: 6080,
});

// 監聽接入進來的使用者端事件
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已經是根據websocket協定解碼開來的原始資料;
	// websocket底層有封包的封包協定,所以,絕對不會出現粘包的情況。
	// 每解一個封包,就會觸發一個message事件;
	// 不會出現粘包的情況,send一次,就會把send的資料獨立封包。
	// 如果我們是直接基於TCP,我們要自己實現類似於websocket封包協定就可以完全達到一樣的效果;
	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事件,表示的我們監聽錯誤;
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模組建立使用者端(client.js)

var ws = require("ws");

// url ws://127.0.0.1:6080
// 建立了一個使用者端的socket,然後讓這個使用者端去連線伺服器的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.網頁使用者端建立(使用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>

更多node相關知識,請存取:!!

以上就是ws是nodejs的內建模組嗎的詳細內容,更多請關注TW511.COM其它相關文章!