惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
The Cloudflare Blog
IT之家
IT之家
雷峰网
雷峰网
小众软件
小众软件
博客园 - 叶小钗
博客园 - 聂微东
爱范儿
爱范儿
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
博客园 - 【当耐特】
V
V2EX
博客园_首页
T
Tailwind CSS Blog

Node.js Blog

Node.js — Security Bug Bounty Program Paused Due to Loss of Funding Node.js — Node.js 25.9.0 (Current) Node.js — Developing a minimally HashDoS resistant, yet quickly reversible integer hash for V8 Node.js — Node.js 25.8.2 (Current) Node.js — Node.js 24.14.1 (LTS) Node.js — Node.js 22.22.2 (LTS) Node.js — Node.js 20.20.2 (LTS) Node.js — Tuesday, March 24, 2026 Security Releases Node.js — Node.js 25.8.1 (Current) Node.js — Evolving the Node.js Release Schedule Node.js — Node.js 22.22.1 (LTS) Node.js — Node.js 20.20.1 (LTS) Node.js — Node.js 25.8.0 (Current) Node.js — Node.js 25.7.0 (Current) Node.js — Node.js 24.14.0 (LTS) Node.js — New HackerOne Signal Requirement for Vulnerability Reports Node.js — Node.js 25.6.1 (Current) Node.js — Node.js 24.13.1 (LTS) Node.js — Node.js 25.6.0 (Current) Node.js — OpenSSL Security Advisory Assessment, January 2026 Node.js — Node.js 25.5.0 (Current) Node.js — Chalk to Node.js util styleText Node.js — Node.js 25.4.0 (Current) Node.js — Mitigating Denial-of-Service Vulnerability from Unrecoverable Stack Space Exhaustion for React, Next.js, and APM Users Node.js — Node.js 22.22.0 (LTS) Node.js — Node.js 25.3.0 (Current) Node.js — Node.js 24.13.0 (LTS) Node.js — Node.js 20.20.0 (LTS) Node.js — Tuesday, January 13, 2026 Security Releases Node.js — Node.js 24.12.0 (LTS)
Node.js — Diag WG Update - Many new tools, phasing out so...
2017-02-28 · via Node.js Blog

JG

Josh Gavant

In surveys and discussions with Node.js users we consistently hear of your need for better tools and APIs for debugging and understanding your modules and apps. In fact, in last year's Node.js Foundation survey, the biggest ask from developers and technical leads was for better tools.

Based on that feedback and thanks to contributions and collaboration from across our community, over the past year several experimental diagnostic APIs and tools have landed in Node itself and the Node.js Foundation, including:

Over the coming months we'll continue to improve the stability of these projects and hope to eventually graduate some from experimental state with your help and feedback. Search the nodejs GitHub org for labels diag-agenda, tracing, and inspector and review issues in the Diagnostics WG to see what we're working on and how you can help.

Inspector replaces legacy V8 Debugger

With progress comes the need to phase out old implementations so we can focus on refining and completing new ones to meet user needs. In particular, as Inspector graduates from experimental status in the coming months, V8 and Node's legacy Debugger API will be deprecated and eventually removed in favor of the new Inspector API.

Considering the relative imminence of this change, we've decided to add a deprecation warning as soon as possible to prepare users of the legacy interface. So beginning in Node 7.7.0 running node --debug (or variants like --debug-brk and --debug-port=12345) will print a deprecation warning to stderr. To avoid this message, start node with the --no-deprecation flag.

For your future debugging needs, use node --inspect or variants like --inspect-brk to activate the new Inspector API. Many popular editors and tools already automatically support this API with Node.js 6 and later.

In addition, Node's built-in CLI debugger, typically invoked with node debug myscript.js, has now (7.6.0+) been augmented with an Inspector-based equivalent invoked with node inspect myscript.js. node debug myscript.js will eventually be removed as well in favor of node inspect.

Try it!

Check out the Debugging - Getting Started guide for help getting started with --inspect and Inspector.

As always, but particularly in this transition stage, we'd love your feedback both on the insights you need from the Node.js runtime and modules, as well as your experiences getting that info with tools and APIs old and new. Open an issue in the Diagnostics WG for discussions or a PR in nodejs/node to contribute code.

Thank you!