为什么当我从 express 发送一个简单的文件时,客户端会消耗大量内存?
Why is it that when I send a simple file from express, the client consumes a lot of memory?
当我从浏览器打开 html 文件时,它使用以下内容:
但是当我从 Express 服务器发送相同的文件时,内存消耗明显更高:
这确实不是一个巨大的内存消耗,但这是一个非常明显的差异,为什么会这样?,Express 是否向客户端发送了一些我不知道的东西(headers,cookies , 什么?)?
从服务器我只有一个 JavaScript 文件和一个使用 Express 的 sendFile
函数发送 html 文件的路由:
const express = require('express');
const { join } = require('path');
const server = express();
server.get('/', (_, res) => {
res.sendFile(join(__dirname, 'render.html'));
});
server.listen(3000, () => {
console.log('Server is running in port 3000');
});
而您发送给客户端的 HTML 文件仅包含以下内容:
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<header>
<h1>This is Header</h1>
</header>
<main>
<section>
<h1>Section 1</h1>
</section>
<section>
<h1>Section 2</h1>
</section>
</main>
<footer>
<h2>This is Footer</h2>
</footer>
</body>
</html>
没有别的了。
我从GoogleChrome和Edge都试过了,希望大家能帮我理解c:
它们既不是 HTTP headers,也不是 cookies ...更不用说服务器了,问题是浏览器的扩展!!!
显然,当我在本地(使用 'File:' 协议)打开 HTML 文件时,扩展名不是 运行。
这对我来说很有趣,我不知道浏览器扩展是如何工作的以及它们的生命周期,但显然扩展共享当前选项卡中的进程和内存,即它们共享进程和当前正在使用的应用程序的内存 运行,它不是我的内存消耗应用程序,它是浏览器扩展进程。
当我从浏览器打开 html 文件时,它使用以下内容:
但是当我从 Express 服务器发送相同的文件时,内存消耗明显更高:
这确实不是一个巨大的内存消耗,但这是一个非常明显的差异,为什么会这样?,Express 是否向客户端发送了一些我不知道的东西(headers,cookies , 什么?)?
从服务器我只有一个 JavaScript 文件和一个使用 Express 的 sendFile
函数发送 html 文件的路由:
const express = require('express');
const { join } = require('path');
const server = express();
server.get('/', (_, res) => {
res.sendFile(join(__dirname, 'render.html'));
});
server.listen(3000, () => {
console.log('Server is running in port 3000');
});
而您发送给客户端的 HTML 文件仅包含以下内容:
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<header>
<h1>This is Header</h1>
</header>
<main>
<section>
<h1>Section 1</h1>
</section>
<section>
<h1>Section 2</h1>
</section>
</main>
<footer>
<h2>This is Footer</h2>
</footer>
</body>
</html>
没有别的了。
我从GoogleChrome和Edge都试过了,希望大家能帮我理解c:
它们既不是 HTTP headers,也不是 cookies ...更不用说服务器了,问题是浏览器的扩展!!!
显然,当我在本地(使用 'File:' 协议)打开 HTML 文件时,扩展名不是 运行。
这对我来说很有趣,我不知道浏览器扩展是如何工作的以及它们的生命周期,但显然扩展共享当前选项卡中的进程和内存,即它们共享进程和当前正在使用的应用程序的内存 运行,它不是我的内存消耗应用程序,它是浏览器扩展进程。