Inconsistent behavior across platforms when importing `node:http` after defining `Object.prototype['0']`
未关闭
还没有人认领这个 Issue。
never-stale
- 主要语言
- JavaScript
- 星标
- 122k
- 派生
- 37.4k
- 平均合并
- 4 天 3 小时
- 30 天内合并 PR
- 272
描述
Version
24.10.0
Platform
Microsoft Windows NT 10.0.26200.0 x64
and
Linux KContainer 5.10.0-12-amd64 #1 SMP Debian 5.10.103-1 (2022-03-07) x86_64 x86_64 x86_64 GNU/Linux
Subsystem
No response
What steps will reproduce the bug?
Hi,
The behavior can be reproduced by running the following snippet:
Object.defineProperty(Object.prototype, '0', {
set() {
console.log(123);
}
});
import http from "node:http"
Run this code by creating a file a.js in Both Linux and Windows and observe a difference in output.
How often does it reproduce? Is there a required condition?
File extension must be .js
Use import http from "node:http" instead of const http = require('http');
What is the expected behavior? Why is that the expected behavior?
Code should give same output when run in both Linux and Windows
What do you see instead?
Linux:
root@KContainer:~/git/run/test# node test.js
123
(node:1547) [MODULE_TYPELESS_PACKAGE_JSON] Warning: Module type of file:///home/c01kele/git/run/test/test.js is not specified and it doesn't parse as CommonJS.
Reparsing as ES module because module syntax was detected. This incurs a performance overhead.
To eliminate this warning, add "type": "module" to /home/c01kele/package.json.
(Use `node --trace-warnings ...` to show where the warning was created)
123
123
123
Windows:
PS D:\HIWI\RESULTS\31_10_2025> node .\test.js
PS D:\HIWI\RESULTS\31_10_2025>
If you use const http = require('http'); instead of import http from "node:http", both Linux and Windows give no output.
Additional information
No response
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先,在报告的 Linux 和 Windows 环境中使用 node:http 导入运行 issue 的 a.js 复现,然后将其与 require('http') 的情况进行比较。跟踪涉及平台差异的内置模块导入路径;完成的标准是在不更改复现的情况下,两个平台产生相同的输出。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript, node.js
- 领域
- backend, operating-systems
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 冷清
- 描述清晰度
- 基本清楚
- 新手友好度
- 48/100