Inconsistent behavior across platforms when importing `node:http` after defining `Object.prototype['0']`
Nessuno ha ancora preso questa issue.
- Lingua principale
- JavaScript
- Stelle
- 122k
- Fork
- 37.3k
- Merge medio
- 4g 2h
- PR unite (30g)
- 283
Descrizione
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
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia eseguendo la riproduzione a.js dell'issue con l'import node:http negli ambienti Linux e Windows segnalati, quindi confrontala con il caso require('http'). Traccia il percorso di importazione del modulo integrato coinvolto nella differenza tra le piattaforme; il lavoro è completato quando viene prodotto lo stesso output su entrambe le piattaforme senza modificare la riproduzione.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- javascript, node.js
- Ambito
- backend, operating-systems
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Tranquilla
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 48/100