我的VS代码扩展代码Runner不起作用

发布于 2025-01-22 09:41:12 字数 331 浏览 0 评论 0原文

嗨,我的问题是,在我的Visual Studio代码中,我的代码Runner扩展名无法提供任何输出。我查看了一堆教程,并完成了所有工作,研究,下载node.js,并将文件保存为JavaScript文件并验证路径。

我输入了“ console.log(“ hello”) 它打印出来 [运行]节点“ C:\ Users \ name \ untitled-1.js [完成]用代码= 0在0.202秒内退出

,而无需“在此处输入Image

请帮助IDK IDK

Hi my issue is that in my visual studio code, my code runner extension doesn't provide any output. I've looked at a bunch of tutorials and have done everything, research, download node.js,and saves the file as a javascript file and verify paths.

I entered " console.log("Hello")
Its prints this out
[Running] node "c:\Users\NAME\Untitled-1.js
[Done] exited with code=0 in 0.202 seconds

And nothing enter image description here

Please help idk what I'm doing wrong ????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

那些过往 2025-01-29 09:41:12

看起来您还没有保存文件。

尝试保存文件,然后使用代码跑步者运行。

提示:您可以启用在运行之前保存设置,以便在运行文件之前每次保存。

File -> Preferences -> Extensions -> Run Code Configuration -> Save File Before Run

Looks like you haven't saved the file.

Try saving the file and then run with Code Runner.

Tip: You can enable Save before Run settings so that it gets saved every time before running the file.

File -> Preferences -> Extensions -> Run Code Configuration -> Save File Before Run

enter image description here

逆夏时光 2025-01-29 09:41:12

在我的情况下,解决方案是取消选中“显示执行消息”复选框中的“运行代码配置”中的复选框。

设置

“

结果

in my case solution was to uncheck "Show Execution Message" check box in Run Code configuration.

setting

1

result

2

相思故 2025-01-29 09:41:12

我建议您在命令提示符窗口中运行node -vnpm -v,以查看是否已安装了

输出

C:\Users\Anonymous>node -v
v16.14.0

C:\Users\Anonymous>npm -v
8.3.1

,并且如果有问题,可能来自您的路径(Windows搜索中的“编辑系统环境变量”),也可能没有安装NPM或节点。

I recommend you to run node -v and npm -v in command prompt window to see if you have them installed

the output must be like this

C:\Users\Anonymous>node -v
v16.14.0

C:\Users\Anonymous>npm -v
8.3.1

and if there is a problem it might be from your paths ("Edit system environment variables" in windows search) or you haven't installed npm or node.

苏大泽ㄣ 2025-01-29 09:41:12

转到扩展页面>设置图标(接近卸载按钮)>扩展设置>在终端中启用称为的选项。

Go to the Extension page > Settings icon (Near uninstall button) > Extension settings > Enable the option called Run In Terminal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文