We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"scripts": { "dev": "node src/app.js", "debug": "node --inspect-brk src/app.js" },
查看日志:(日志中的 9229 端口有用,记下来)
> koa-demos@1.0.0 debug > node --inspect-brk src/app.js Debugger listening on ws://127.0.0.1:9229/cf206047-e42c-4a52-952a-d2684e72734d For help, see: https://nodejs.org/en/inspector Debugger attached.
http://localhost:9229/
WebSockets request was expected
在此页面可调试 koa app 实例创建前的情况,如 进入 koa 的初始化。
http://localhost:3000/
在此页面可调试 koa 实例创建后的情况,如进入 koa 的中间件。
创建配置文件,而后点击 调试按钮(或按 F5)开启调试模式
使用 VS code 自动的 javascript debug 调试方案。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Chrome DevTools: node --inspect
查看日志:(日志中的 9229 端口有用,记下来)
http://localhost:9229/
, 页面显示WebSockets request was expected
, 而后打开调试面板点击 node 图标进入源码界面。在此页面可调试 koa app 实例创建前的情况,如 进入 koa 的初始化。
http://localhost:3000/
。在此页面可调试 koa 实例创建后的情况,如进入 koa 的中间件。
VS Code 调试
创建配置文件,而后点击 调试按钮(或按 F5)开启调试模式
在此页面可调试 koa app 实例创建前的情况,如 进入 koa 的初始化。
http://localhost:3000/
。在此页面可调试 koa 实例创建后的情况,如进入 koa 的中间件。
JavaScript Debug Terminal
使用 VS code 自动的 javascript debug 调试方案。
参考链接
The text was updated successfully, but these errors were encountered: