繁体   English   中英

错误:运行“http”时找不到模块“moduleIntro.js”

[英]Error: Cannot find module “moduleIntro.js” when running “http”

我在 Node.Js 中尝试了一个基本的初学者程序,我想在其中使用内置模块“http”。 执行 http.createServer() 的基本程序后。 下面是我的源代码。

var http = require('http');


http.createServer(function (req, res) {
  res.write('Hello World!'); 
  res.end(); 
}).listen(8080);

在 cmd 中运行代码时,它没有运行并显示以下错误。

events.js:287
      throw er; // Unhandled 'error' event
      ^

Error: listen EADDRINUSE: address already in use :::8080
    at Server.setupListenHandle [as _listen2] (net.js:1313:16)
    at listenInCluster (net.js:1361:12)
    at Server.listen (net.js:1449:7)
    at Object.<anonymous> (F:\NodeJS\first app\w3schools\moduleIntro,.js:7:4)
    at Module._compile (internal/modules/cjs/loader.js:1133:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1153:10)
    at Module.load (internal/modules/cjs/loader.js:977:32)
    at Function.Module._load (internal/modules/cjs/loader.js:877:14)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:74:12)
    at internal/main/run_main_module.js:18:47
Emitted 'error' event on Server instance at:
    at emitErrorNT (net.js:1340:8)
    at processTicksAndRejections (internal/process/task_queues.js:84:21) {
  code: 'EADDRINUSE',
  errno: 'EADDRINUSE',
  syscall: 'listen',
  address: '::',
  port: 8080
}

好的,您的代码实际上没有问题 8080 已经在其他任何地方运行,因此您不能一次运行相同的端口号,因此只需关闭所有正在运行的进程,或者您只需关闭 PC 并再次运行,问题就会得到解决。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM