Home  >  Article  >  Web Front-end  >  How to enable nodejs debugging? How to debug nodejs program?

How to enable nodejs debugging? How to debug nodejs program?

青灯夜游
青灯夜游forward
2022-01-20 19:55:035041browse

How to debug a nodejs program? The following article will introduce you to the nodejs debugging method. I hope it will be helpful to you!

How to enable nodejs debugging? How to debug nodejs program?

For developers, in the process of developing applications, they often need to resort to the debugging function of the programming language for the convenience of development and to solve bugs. Generally speaking, we need to use the debugging function of a powerful IDE to complete this work. nodejs is no exception.

Today we will introduce in detail how to debug the node program.

Enable nodejs debugging

Do you remember the koa program we talked about before? This article will take a simple koa server program as an example to start debugging nodejs.

Let’s first look at a simple koa service app.js:

const Koa = require('koa');
const app = module.exports = new Koa();

app.use(async function(ctx) {
  ctx.body = 'Hello World';
});

if (!module.parent) app.listen(3000);

The above program opens port 3000 and establishes an http service. Every time a request is made, hello World will be returned, which is very simple.

To run the above program, we need to execute node app.js. This will execute app.js but will not enable debugging.

How to debug?

We need to add the --inspect parameter:

node --inspect app.js

The above code will enable the debugging function of nodejs.

Let’s take a look at the output:

Debugger listening on ws://127.0.0.1:9229/88c23ae3-9081-41cd-98b0-d0f7ebceab5a
For help, see: https://nodejs.org/en/docs/inspector

The results tell us two things. The first thing is the port that the debugger listens to. By default, port 9229 of 127.0.0.1 will be opened. And assigned a unique UUID for differentiation.

The second thing is to tell us that the debugger used by nodejs is Inspector.

Inspector was introduced after nodejs 8. If it is before nodejs 7, then the legacy debugger is used.

Debugging security

If the debugger is connected to the nodejs running environment, if there is a malicious attacker, the malicious attacker can run arbitrary code in the nodejs environment . This will bring great security risks to our program.

So we must pay attention to the safety of debugging. Generally speaking, we do not recommend remote debugging.

By default, --inspect is bound to 127.0.0.1, which only allows local programs to access. And any locally running program has permission to debug the program.

If we really want to expose the debug program to external programs, we can specify the external IP address of the machine or 0.0.0.0 (indicating any address, no restrictions), so that the remote machine can perform remote Debugged.

What should we do if we want to perform safe remote debugging?

First, we need to enable local debugging:

node --inspect app.js

Then we can build an ssh tunnel to map the local 9221 port to the remote server's 9229 port:

ssh -L 9221:localhost:9229 user@remote.example.com

In this way, we can perform remote debugging by connecting to the local 9221 port.

Use WebStorm for nodejs debugging

WebStorm produced by JetBrains can be said to be a powerful tool for developing nodejs. WebStorm has its own debug option. If this option is turned on, it will Turn on --inspect:

Using WebStorm for debugging is similar to using IDEA for java program debugging, so I won’t go into details here.

Use Chrome devTools for debugging

The prerequisite for using Chrome devTools for debugging is that we have turned on the --inspect mode.

Enter chrome://inspect in chrome:

We can see the chrome inspect interface. If you already have a nodejs program that has inspect enabled locally, If so, you can see it directly in Remote Target.

Select the target you want to debug and click inspect to open the Chrome devTools debugging tool:

You can profile the program and debug it. .

Here we are focusing on debugging, so go to the source column and add the source code of the program you want to debug:

Just add a breakpoint Debugging started. It is the same as debugging js on the web side in chrome.

Use node-inspect for debugging

In fact, nodejs has a built-in debugging tool called node-inspect, which is a cli debugging tool. Let's see how to use it.

We directly use:

node inspect app.js

< Debugger listening on ws://127.0.0.1:9229/f1c64736-47a1-42c9-9e9e-f2665073d3eb
< For help, see: https://nodejs.org/en/docs/inspector
< Debugger attached.
Break on start in app.js:1
> 1 const Koa = require(&#39;koa&#39;);
  2 const app = module.exports = new Koa();
  3 
debug>

node inspect does two things. The first thing is to generate a subroutine to run node --inspect app.js. The second thing is to Run the CLI debug window in the program.

This CLI debugger provides us with some very useful commands:

1, Stepping

  • cont, c : Continue to execute
  • next, n: Step to the next step
  • step, s: Step in
  • out, o: Step out
  • pause: Pause Running code

2, Breakpoints

  • setBreakpoint(), sb(): Set a breakpoint on the current line
  • setBreakpoint(line), sb(line): Set a breakpoint on the specified line
  • setBreakpoint ('fn()'), sb(…): Set a breakpoint in the specified function
  • setBreakpoint('script.js', 1), sb(…): Set it in the specified script file Breakpoint
  • clearBreakpoint('script.js', 1), cb(…): Clear breakpoint from the file

3, Information

  • backtrace, bt: Print the backtrace information of the current execution frame
  • list(5): List the 5 lines before and after the source code
  • watch(expr): Add a monitor Expression
  • unwatch(expr): Delete the watch expression
  • watchers: List all watchers
  • repl: Open the repl expression
  • exec expr : Execute expression

Through the above command, we can perform more complex debugging activities in the CLI.

Other debug clients

In addition to the ones we mentioned above, we can also use vscode, Visual Studio, Eclipse IDE, etc. to perform nodejs Debugging will not be introduced in detail here.

Interested friends can explore on their own.

For more node-related knowledge, please visit: nodejs tutorial! !

The above is the detailed content of How to enable nodejs debugging? How to debug nodejs program?. For more information, please follow other related articles on the PHP Chinese website!

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