Debug in node. js

Source: Internet
Author: User
Tags node inspector

    • Using the console object:console.log (' xxx ');
    • Using node. JS Internal debugger (V8 engine): node Debug xxx.js
Refer To:https://nodejs.org/api/debugger.html#debugger_debugger
    • Using Node-inspector:https://github.com/node-inspector/node-inspector
How to use Node-inspector:
    1. In one terminal, run "Node-inspector" to start the Node Inspector server.
    2. In another terminal, run
     Node--debug your/node/program.js
    1. Or
      Node--DEBUG-BRK your/short/node/script.js//Pause your script on the first line
      To start your node process.
    2. Launch Chrome or Opera, open http://127.0.0.1:8080/debug?port=5858 to Launch debugger UI. (Server code can be shown here)
      • You can set breakpoint to code (although if cannot see the breakpoint first time, click "Refresh" button on browser, You can see program would stop at the breakpoint you set last time.)

Debug in node. js

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.