Home > Development Tools > VSCode > body text

Record a solution to the console output garbled code in vscode

青灯夜游
Release: 2022-08-31 11:56:42
forward
3700 people have browsed it

vscodeUse runcode to call node to run the js file and the output is garbled or node is displayed: The "node" item cannot be recognized as the name of a cmdlet, function, script file or runnable program

Record a solution to the console output garbled code in vscode

It is a very simple way to run the node environment on vscode and install the runcode plug-in. However, first-time users often encounter garbled output and other problems. [Recommended learning: "vscode introductory tutorial"]

As shown in the picture

Record a solution to the console output garbled code in vscode

Record a solution to the console output garbled code in vscode

By referring to the methods on the Internet and combining them with practice, I finally found a way to solve the problem. As follows, 1. Click the "File", "Preferences", and "Settings" buttons

Record a solution to the console output garbled code in vscode

2. Enter search settings.json in the search box, and then click on settings .json for editing

Record a solution to the console output garbled code in vscode

3. Enter the editing interface, first comment out "workbench.editorAssociations":[] if there is one, otherwise continue An error will be reported, then add "code-runner.runInTerminal":true, "code-runner.executorMap":{ "python":"set PYTHONIOENCODING=utf8 && python ", "javascript": "D:\node .exe", },Note "javascript": "D:[node](so.csdn.net/so/search?q…

Record a solution to the console output garbled code in vscode

4. After modifying and saving, right-click the js file and click run code to run normally

Record a solution to the console output garbled code in vscode

For more knowledge about VSCode, please visit: vscode tutorial!

The above is the detailed content of Record a solution to the console output garbled code in vscode. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:juejin.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!