{"id":13509429,"url":"https://github.com/nswbmw/node-in-debugging","last_synced_at":"2025-05-14T15:08:56.756Z","repository":{"id":40643533,"uuid":"123243705","full_name":"nswbmw/node-in-debugging","owner":"nswbmw","description":"《Node.js 调试指南》","archived":false,"fork":false,"pushed_at":"2021-09-02T18:49:43.000Z","size":9080,"stargazers_count":6453,"open_issues_count":8,"forks_count":800,"subscribers_count":231,"default_branch":"master","last_synced_at":"2025-04-04T06:01:34.195Z","etag":null,"topics":["debug","debugging","guide","node","tutorial"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nswbmw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-28T07:00:26.000Z","updated_at":"2025-04-02T03:19:24.000Z","dependencies_parsed_at":"2022-07-14T04:40:30.310Z","dependency_job_id":null,"html_url":"https://github.com/nswbmw/node-in-debugging","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nswbmw%2Fnode-in-debugging","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nswbmw%2Fnode-in-debugging/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nswbmw%2Fnode-in-debugging/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nswbmw%2Fnode-in-debugging/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nswbmw","download_url":"https://codeload.github.com/nswbmw/node-in-debugging/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248384683,"owners_count":21094756,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["debug","debugging","guide","node","tutorial"],"created_at":"2024-08-01T02:01:07.597Z","updated_at":"2025-04-11T11:36:15.070Z","avatar_url":"https://github.com/nswbmw.png","language":null,"readme":"\u003ch1 align=\"center\"\u003e\n\u003cimg src=\"./assets/book.jpg\" alt=\"node-in-debugging\" width=\"200\" height=\"200\" /\u003e\n\u003cbr\u003e\n《Node.js 调试指南》\n\u003c/h1\u003e\n\u003ch4 align=\"center\"\u003e\n\u003ca href=\"http://product.dangdang.com/25278935.html\"\u003e当当\u003c/a\u003e | \u003ca href=\"https://item.jd.com/12356929.html\"\u003e京东\u003c/a\u003e | \u003ca href=\"https://s.taobao.com/search?q=Node.js%E8%B0%83%E8%AF%95%E6%8C%87%E5%8D%97\"\u003e淘宝\u003c/a\u003e | \u003ca href=\"https://www.amazon.cn/dp/B07D57FDY4/\"\u003e亚马逊\u003c/a\u003e | \u003ca href=\"http://product.china-pub.com/8004731\"\u003echina-pub\u003c/a\u003e\n\u003c/h4\u003e\n\n## 开发环境\n\n- MacOS|Linux(Ubuntu@16.04 64位)\n- Node.js@8.9.4\n\n## 目录\n\n- CPU 篇\n  - [perf + FlameGraph](https://github.com/nswbmw/node-in-debugging/blob/master/1.1%20perf%20%2B%20FlameGraph.md)\n  - [v8-profiler](https://github.com/nswbmw/node-in-debugging/blob/master/1.2%20v8-profiler.md)\n  - [Tick Processor](https://github.com/nswbmw/node-in-debugging/blob/master/1.3%20Tick%20Processor.md)\n- 内存篇\n  - [gcore + llnode](https://github.com/nswbmw/node-in-debugging/blob/master/2.1%20gcore%20%2B%20llnode.md)\n  - [heapdump](https://github.com/nswbmw/node-in-debugging/blob/master/2.2%20heapdump.md)\n  - [memwatch-next](https://github.com/nswbmw/node-in-debugging/blob/master/2.3%20memwatch-next.md)\n  - [cpu-memory-monitor](https://github.com/nswbmw/node-in-debugging/blob/master/2.4%20cpu-memory-monitor.md)\n- 代码篇\n  - [Promise](https://github.com/nswbmw/node-in-debugging/blob/master/3.1%20Promise.md)\n  - [Async + Await](https://github.com/nswbmw/node-in-debugging/blob/master/3.2%20Async%20%2B%20Await.md)\n  - [Error Stack](https://github.com/nswbmw/node-in-debugging/blob/master/3.3%20Error%20Stack.md)\n  - [Node@8](https://github.com/nswbmw/node-in-debugging/blob/master/3.4%20Node%408.md)\n  - [Rust Addons](https://github.com/nswbmw/node-in-debugging/blob/master/3.5%20Rust%20Addons.md)\n  - [Event Loop](https://github.com/nswbmw/node-in-debugging/blob/master/3.6%20Event%20Loop.md)\n  - [uncaughtException + llnode](https://github.com/nswbmw/node-in-debugging/blob/master/3.7%20uncaughtException%20%2B%20llnode.md)\n- 工具篇\n  - [Source Map](https://github.com/nswbmw/node-in-debugging/blob/master/4.1%20Source%20Map.md)\n  - [Chrome DevTools](https://github.com/nswbmw/node-in-debugging/blob/master/4.2%20Chrome%20DevTools.md)\n  - [Visual Studio Code](https://github.com/nswbmw/node-in-debugging/blob/master/4.3%20Visual%20Studio%20Code.md)\n  - [debug + repl2 + power-assert](https://github.com/nswbmw/node-in-debugging/blob/master/4.4%20debug%20%2B%20repl2%20%2B%20power-assert.md)\n  - [supervisor-hot-reload](https://github.com/nswbmw/node-in-debugging/blob/master/4.5%20supervisor-hot-reload.md)\n- APM 篇\n  - [NewRelic](https://github.com/nswbmw/node-in-debugging/blob/master/5.1%20NewRelic.md)\n  - [Elastic APM](https://github.com/nswbmw/node-in-debugging/blob/master/5.2%20Elastic%20APM.md)\n- 日志篇\n  - [koa-await-breakpoint](https://github.com/nswbmw/node-in-debugging/blob/master/6.1%20koa-await-breakpoint.md)\n  - [async_hooks](https://github.com/nswbmw/node-in-debugging/blob/master/6.2%20async_hooks.md)\n  - [ELK](https://github.com/nswbmw/node-in-debugging/blob/master/6.3%20ELK.md)\n  - [OpenTracing + Jaeger](https://github.com/nswbmw/node-in-debugging/blob/master/6.4%20OpenTracing%20%2B%20Jaeger.md)\n  - [Sentry](https://github.com/nswbmw/node-in-debugging/blob/master/6.5%20Sentry.md)\n- 监控篇\n  - [Telegraf + InfluxDB + Grafana(上)](https://github.com/nswbmw/node-in-debugging/blob/master/7.1%20Telegraf%20%2B%20InfluxDB%20%2B%20Grafana(%E4%B8%8A).md)\n  - [Telegraf + InfluxDB + Grafana(下)](https://github.com/nswbmw/node-in-debugging/blob/master/7.2%20Telegraf%20%2B%20InfluxDB%20%2B%20Grafana(%E4%B8%8B).md)\n- 应用篇\n  - [node-clinic](https://github.com/nswbmw/node-in-debugging/blob/master/8.1%20node-clinic.md)\n  - [alinode](https://github.com/nswbmw/node-in-debugging/blob/master/8.2%20alinode.md)\n","funding_links":[],"categories":["Others","目录","Uncategorized","前端相关","Node"],"sub_categories":["Uncategorized","Node","调试"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnswbmw%2Fnode-in-debugging","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnswbmw%2Fnode-in-debugging","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnswbmw%2Fnode-in-debugging/lists"}