跳到主要内容

Node

2024年08月07日
柏拉文
越努力,越幸运

一、认识


二、操作


  1. 在代码开头添加 debugger

    Preview
  2. 点击vscode侧边栏调试按钮,点击运行和调试,选择Node.js环境或者Chorme环境都可

    Preview
  3. 根据调试需要,点击不同的按钮进行调试

    Preview

    按钮功能分别为:

    • 开始结束调试:
    • 下一步:
    • 进入函数栈:

三、问题


3.1 Can't find Node.js binary "node"

问题描述: Can't find Node.js binary "node": path does not exist. Make sure Node.js is installed and in your PATH, or set the "runtimeExecutable" in your launch.json

问题详情:

Preview

问题分析:

本机通过NVM来管理Node的安装与卸载,没有单独安装Node,而VsCode默认运行单独安装的Node

问题解决:

两种方式的Node都需要安装

  • NVM 安装 Node
  • 单独安装Node