Home>Article>Development Tools> Record a solution to the console output garbled code in vscode

Record a solution to the console output garbled code in vscode

青灯夜游
青灯夜游 forward
2022-08-31 11:48:45 3650browse

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 onvscodeand 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!

Statement:
This article is reproduced at:juejin.cn. If there is any infringement, please contact admin@php.cn delete