JS - VSCode 在终端中没有 consol.log 输出

问题描述 投票:0回答:1

我的终端登录输出有问题:

  1. 我运行节点版本23.4.0

  2. 在 Windows 上的 CLI 中使用 Node 并编写 JS 效果非常好

  3. 在 Vs Code 中,我创建了文件 app.js

  4. app.js 保存在 starters 文件夹中

  5. app.js 包含以下代码:

console.log("starting app") const express = require('express'); const app = express();  app.get('/', (req, res)=> {     res.status(200).send('Hello From the Server Side') })  //App.listen allows to start a server  const port = 3000; app.listen(port, () => {     console.log(
应用程序在端口 ${port} 上运行...
) })

  1. 在终端中,没有输出(见截图) 在此输入图片描述

  2. 控制台中的“输出”选项卡为空

  3. 卸载并重新安装node.js

  4. 尝试记录某事。使用一个名为 test.js 的新文件,其中包含一行代码:“console.log(“Hello World”。未成功

javascript node.js visual-studio-code logging
1个回答
0
投票

首先,按 Ctrl + S 保存代码。

保存后,使用命令

node app.js
运行它,这应该可以解决您的问题。

© www.soinside.com 2019 - 2024. All rights reserved.