Skip to content

Commit 85f5490

Browse files
Jan Kremsitaloacasas
Jan Krems
authored andcommitted
deps: add node-inspect 1.10.2
Squashed from: - deps: Add node-inspect 1.10.1 This adds a reimplementation of the old CLI debugger (`node debug`) against the new debugger protocol (`node --inspect`). This is necessary because the old protocol won't be supported in future versions of V8. - deps: Update node-inspect to 1.10.2 Starting with 1.10.2 the test suite should pass consistently on windows. - deps: Update to node-inspect 1.10.4 PR-URL: #10187 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 6cf06cf commit 85f5490

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+3792
-0
lines changed

deps/node-inspect/.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
[*.md]
11+
trim_trailing_whitespace = false

deps/node-inspect/.eslintrc

+147
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
root: true
2+
3+
env:
4+
node: true
5+
es6: true
6+
7+
parserOptions:
8+
ecmaVersion: 2016
9+
10+
rules:
11+
# Possible Errors
12+
# http://eslint.org/docs/rules/#possible-errors
13+
comma-dangle: [2, only-multiline]
14+
no-control-regex: 2
15+
no-debugger: 2
16+
no-dupe-args: 2
17+
no-dupe-keys: 2
18+
no-duplicate-case: 2
19+
no-empty-character-class: 2
20+
no-ex-assign: 2
21+
no-extra-boolean-cast: 2
22+
no-extra-parens: [2, functions]
23+
no-extra-semi: 2
24+
no-func-assign: 2
25+
no-invalid-regexp: 2
26+
no-irregular-whitespace: 2
27+
no-obj-calls: 2
28+
no-proto: 2
29+
no-template-curly-in-string: 2
30+
no-unexpected-multiline: 2
31+
no-unreachable: 2
32+
no-unsafe-negation: 2
33+
use-isnan: 2
34+
valid-typeof: 2
35+
36+
# Best Practices
37+
# http://eslint.org/docs/rules/#best-practices
38+
dot-location: [2, property]
39+
no-fallthrough: 2
40+
no-global-assign: 2
41+
no-multi-spaces: 2
42+
no-octal: 2
43+
no-redeclare: 2
44+
no-self-assign: 2
45+
no-unused-labels: 2
46+
no-useless-call: 2
47+
no-useless-escape: 2
48+
no-void: 2
49+
no-with: 2
50+
51+
# Strict Mode
52+
# http://eslint.org/docs/rules/#strict-mode
53+
strict: [2, global]
54+
55+
# Variables
56+
# http://eslint.org/docs/rules/#variables
57+
no-delete-var: 2
58+
no-undef: 2
59+
no-unused-vars: [2, {args: none}]
60+
61+
# Node.js and CommonJS
62+
# http://eslint.org/docs/rules/#nodejs-and-commonjs
63+
no-mixed-requires: 2
64+
no-new-require: 2
65+
no-path-concat: 2
66+
no-restricted-modules: [2, sys, _linklist]
67+
no-restricted-properties: [2, {
68+
object: assert,
69+
property: deepEqual,
70+
message: Please use assert.deepStrictEqual().
71+
}, {
72+
property: __defineGetter__,
73+
message: __defineGetter__ is deprecated.
74+
}, {
75+
property: __defineSetter__,
76+
message: __defineSetter__ is deprecated.
77+
}]
78+
79+
# Stylistic Issues
80+
# http://eslint.org/docs/rules/#stylistic-issues
81+
brace-style: [2, 1tbs, {allowSingleLine: true}]
82+
comma-spacing: 2
83+
comma-style: 2
84+
computed-property-spacing: 2
85+
eol-last: 2
86+
func-call-spacing: 2
87+
func-name-matching: 2
88+
indent: [2, 2, {SwitchCase: 1, MemberExpression: 1}]
89+
key-spacing: [2, {mode: minimum}]
90+
keyword-spacing: 2
91+
linebreak-style: [2, unix]
92+
max-len: [2, 80, 2]
93+
new-parens: 2
94+
no-mixed-spaces-and-tabs: 2
95+
no-multiple-empty-lines: [2, {max: 2, maxEOF: 0, maxBOF: 0}]
96+
no-tabs: 2
97+
no-trailing-spaces: 2
98+
quotes: [2, single, avoid-escape]
99+
semi: 2
100+
semi-spacing: 2
101+
space-before-blocks: [2, always]
102+
space-before-function-paren: [2, never]
103+
space-in-parens: [2, never]
104+
space-infix-ops: 2
105+
space-unary-ops: 2
106+
107+
# ECMAScript 6
108+
# http://eslint.org/docs/rules/#ecmascript-6
109+
arrow-parens: [2, always]
110+
arrow-spacing: [2, {before: true, after: true}]
111+
constructor-super: 2
112+
no-class-assign: 2
113+
no-confusing-arrow: 2
114+
no-const-assign: 2
115+
no-dupe-class-members: 2
116+
no-new-symbol: 2
117+
no-this-before-super: 2
118+
prefer-const: [2, {ignoreReadBeforeAssign: true}]
119+
rest-spread-spacing: 2
120+
template-curly-spacing: 2
121+
122+
# Custom rules in tools/eslint-rules
123+
align-function-arguments: 2
124+
align-multiline-assignment: 2
125+
assert-fail-single-argument: 2
126+
new-with-error: [2, Error, RangeError, TypeError, SyntaxError, ReferenceError]
127+
128+
# Global scoped method and vars
129+
globals:
130+
COUNTER_HTTP_CLIENT_REQUEST: false
131+
COUNTER_HTTP_CLIENT_RESPONSE: false
132+
COUNTER_HTTP_SERVER_REQUEST: false
133+
COUNTER_HTTP_SERVER_RESPONSE: false
134+
COUNTER_NET_SERVER_CONNECTION: false
135+
COUNTER_NET_SERVER_CONNECTION_CLOSE: false
136+
DTRACE_HTTP_CLIENT_REQUEST: false
137+
DTRACE_HTTP_CLIENT_RESPONSE: false
138+
DTRACE_HTTP_SERVER_REQUEST: false
139+
DTRACE_HTTP_SERVER_RESPONSE: false
140+
DTRACE_NET_SERVER_CONNECTION: false
141+
DTRACE_NET_STREAM_END: false
142+
LTTNG_HTTP_CLIENT_REQUEST: false
143+
LTTNG_HTTP_CLIENT_RESPONSE: false
144+
LTTNG_HTTP_SERVER_REQUEST: false
145+
LTTNG_HTTP_SERVER_RESPONSE: false
146+
LTTNG_NET_SERVER_CONNECTION: false
147+
LTTNG_NET_STREAM_END: false

deps/node-inspect/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
npm-debug.log
3+
/tmp
4+
/.vs

deps/node-inspect/.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org

deps/node-inspect/.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: node_js
2+
node_js:
3+
- '6.8'
4+
before_deploy:
5+
- git config --global user.email "[email protected]"
6+
- git config --global user.name "Jan Krems"
7+
deploy:
8+
provider: script
9+
script: ./node_modules/.bin/nlm release
10+
skip_cleanup: true
11+
'on':
12+
branch: master
13+
node: '6.8'

deps/node-inspect/CHANGELOG.md

+212
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
### 1.10.4
2+
3+
* [`1c31bf7`](https://github.com./buggerjs/node-inspect/commit/1c31bf7d1b3ea1b424ae0662526596670cb506c9) **chore:** Support embedded mode
4+
5+
6+
### 1.10.3
7+
8+
* [`7b20379`](https://github.com./buggerjs/node-inspect/commit/7b20379069af692a9038a31a4465f72db9eb532f) **chore:** Mark .eslintrc as root
9+
10+
11+
### 1.10.2
12+
13+
* Run tests on windows - **[@jkrems](https://github.com./jkrems)** [#16](https://github.com./buggerjs/node-inspect/pull/16)
14+
- [`5a57f98`](https://github.com./buggerjs/node-inspect/commit/5a57f9865e02eef0763c2a7f26236c34a632ccdd) **chore:** Run tests on windows
15+
- [`0a04b50`](https://github.com./buggerjs/node-inspect/commit/0a04b50cc8b4dc6ce868927c635c479d75ce71f4) **chore:** Bump nlm to get rid of postinstall
16+
- [`4a8b27c`](https://github.com./buggerjs/node-inspect/commit/4a8b27cea814a37895effd2a0c1b85dbfee3a7f4) **test:** Remove unix path assumptions
17+
18+
19+
### 1.10.1
20+
21+
* [`4ba3c72`](https://github.com./buggerjs/node-inspect/commit/4ba3c72270fae9a71343ddca11aa27980678a67c) **refactor:** Undo weird bundling into one file
22+
23+
24+
### 1.10.0
25+
26+
* [`3e1a66a`](https://github.com./buggerjs/node-inspect/commit/3e1a66a489bef19beaa5f859e99e027274ff43cb) **feat:** Support CPU & heap profiles
27+
28+
29+
### 1.9.3
30+
31+
* Move back to single file - **[@jkrems](https://github.com./jkrems)** [#15](https://github.com./buggerjs/node-inspect/pull/15)
32+
- [`9877660`](https://github.com./buggerjs/node-inspect/commit/9877660a73ff0ec0885ad7f939ba62020a46b4b6) **refactor:** Wrap client in IIFE
33+
- [`7795c53`](https://github.com./buggerjs/node-inspect/commit/7795c533f0605eb128db610a5874b27e555251ef) **refactor:** Move more code in createRepl scope
34+
- [`be34a39`](https://github.com./buggerjs/node-inspect/commit/be34a398e823612bdf5ac90bad5222af27035a00) **refactor:** Move back to single file
35+
- [`ab45b62`](https://github.com./buggerjs/node-inspect/commit/ab45b6273dc0d3a49d3cf46a80cb48ab79d1caf8) **refactor:** Remove single-use functions
36+
- [`37a711e`](https://github.com./buggerjs/node-inspect/commit/37a711ed5334c06ed4d85f995e567a9f176a68d5) **style:** Stop using `new Buffer`
37+
- [`d669dc5`](https://github.com./buggerjs/node-inspect/commit/d669dc593f5ad5ca7a48f19f0905ef66ec0e540d) **chore:** Switch to node eslint rules
38+
- [`15e7917`](https://github.com./buggerjs/node-inspect/commit/15e79177918d96dcffd2384715faf0308e97a26c) **style:** Use var in classical for loops
39+
40+
41+
### 1.9.2
42+
43+
* [`c9dc4be`](https://github.com./buggerjs/node-inspect/commit/c9dc4beb08236e33d64f19417682cf5b3f5aeed6) **doc:** Link directly to GOVERNANCE file
44+
45+
46+
### 1.9.1
47+
48+
* Handle big ws frames correctly - **[@jkrems](https://github.com./jkrems)** [#14](https://github.com./buggerjs/node-inspect/pull/14)
49+
- [`f80100e`](https://github.com./buggerjs/node-inspect/commit/f80100e932710d232d074b239cbf8fefa564c789) **fix:** Handle big ws frames correctly - see: [#10](https://github.com./buggerjs/node-inspect/issues/10)
50+
51+
52+
### 1.9.0
53+
54+
* Support for low-level agent access - **[@jkrems](https://github.com./jkrems)** [#13](https://github.com./buggerjs/node-inspect/pull/13)
55+
- [`90ed431`](https://github.com./buggerjs/node-inspect/commit/90ed4310c62d130637c12f8ecdb752075c43ac36) **feat:** Support for low-level agent access
56+
57+
58+
### 1.8.4
59+
60+
* Use proper path for websocket - **[@jkrems](https://github.com./jkrems)** [#12](https://github.com./buggerjs/node-inspect/pull/12)
61+
- [`3405225`](https://github.com./buggerjs/node-inspect/commit/3405225979dfc2058bcc6d1b90f41c060dbd1f92) **fix:** Use proper path for websocket - see: [#11](https://github.com./buggerjs/node-inspect/issues/11)
62+
63+
64+
### 1.8.3
65+
66+
* [`6f9883d`](https://github.com./buggerjs/node-inspect/commit/6f9883d4b29419831133988981b83e891b19739a) **fix:** Breakpoints & scripts work when not paused
67+
* [`ecb1362`](https://github.com./buggerjs/node-inspect/commit/ecb1362c842e6ed5bc28c091a32bfd540742db75) **chore:** Pin node to 6.8
68+
69+
70+
### 1.8.2
71+
72+
* [`4219a98`](https://github.com./buggerjs/node-inspect/commit/4219a98d6514f1068feabce2945c21a0d5ba6561) **refactor:** Decouple source snippet from repl
73+
74+
75+
### 1.8.1
76+
77+
* [`95402ee`](https://github.com./buggerjs/node-inspect/commit/95402ee5dff04057f074677d39db2f61ec74c151) **refactor:** Move `list` into CallFrame
78+
79+
80+
### 1.8.0
81+
82+
* [`d0e6499`](https://github.com./buggerjs/node-inspect/commit/d0e6499084f5d656ef0c5fd470d3ab21f2e9a6b4) **feat:** `exec .scope`
83+
84+
85+
### 1.7.0
86+
87+
* `breakOn{Exception,Uncaught,None}` - **[@jkrems](https://github.com./jkrems)** [#8](https://github.com./buggerjs/node-inspect/pull/8)
88+
- [`fa8c4c7`](https://github.com./buggerjs/node-inspect/commit/fa8c4c7d7bb6972733c92da4d04fdd62c02b0e3b) **feat:** `breakOn{Exception,Uncaught,None}` - see: [#6](https://github.com./buggerjs/node-inspect/issues/6)
89+
90+
91+
### 1.6.0
92+
93+
* Add `help` command - **[@jkrems](https://github.com./jkrems)** [#7](https://github.com./buggerjs/node-inspect/pull/7)
94+
- [`09b37a0`](https://github.com./buggerjs/node-inspect/commit/09b37a02e04e16a38ce27f69538d3b098548b47c) **feat:** Add `help` command - see: [#5](https://github.com./buggerjs/node-inspect/issues/5)
95+
96+
97+
### 1.5.0
98+
99+
* [`7e0fd99`](https://github.com./buggerjs/node-inspect/commit/7e0fd99fcfc65d8b647a2259df78f4cabf1d3d63) **feat:** Add `r` shortcut for `run`
100+
101+
102+
### 1.4.1
103+
104+
* [`484d098`](https://github.com./buggerjs/node-inspect/commit/484d0983f06d6ff9639ab5197ba0a58313f532df) **chore:** Remove old implementation
105+
106+
107+
### 1.4.0
108+
109+
* Properly tested implementation - **[@jkrems](https://github.com./jkrems)** [#4](https://github.com./buggerjs/node-inspect/pull/4)
110+
- [`ba060d3`](https://github.com./buggerjs/node-inspect/commit/ba060d3ef65ae84df2a3a9b9f16d563f3c4b29be) **feat:** Error handling w/o args
111+
- [`b39b3bc`](https://github.com./buggerjs/node-inspect/commit/b39b3bc07c13adc48fc8bb720889285c51e62548) **feat:** Launch child
112+
- [`481693f`](https://github.com./buggerjs/node-inspect/commit/481693f676ee099b7787cd2426b980858e973602) **feat:** Connect debug client
113+
- [`3bba0f2`](https://github.com./buggerjs/node-inspect/commit/3bba0f2416b2e3b4e6010de675003fcc328b16e8) **chore:** Disable lint for inactive code
114+
- [`cc7bdfc`](https://github.com./buggerjs/node-inspect/commit/cc7bdfcf7f21ef5cd5c32c7800407238b0d4f100) **feat:** Properly fail with invalid host:port
115+
- [`73f34f9`](https://github.com./buggerjs/node-inspect/commit/73f34f902634e9778597e129f46895aa8b643d72) **refactor:** Remove unused field
116+
- [`6a23e0c`](https://github.com./buggerjs/node-inspect/commit/6a23e0cf3179f43ca6fc5a0fa2b1dd18ebc044b5) **refactor:** Better debug output & support node 6.6
117+
- [`63b0f9b`](https://github.com./buggerjs/node-inspect/commit/63b0f9b6ef8bd9af0f7cb14a5938a45838731fc9) **test:** Add timeout to waitFor(pattern)
118+
- [`cfa197b`](https://github.com./buggerjs/node-inspect/commit/cfa197bf8325a1a4ca1b296f8d6971d368bfbfbb) **refactor:** Move REPL setup into own file
119+
- [`3f46c2c`](https://github.com./buggerjs/node-inspect/commit/3f46c2c43f836e1135b66871087aa74969f6b330) **feat:** Working repl eval
120+
- [`6911eb1`](https://github.com./buggerjs/node-inspect/commit/6911eb1a00b964bc5683506d433fa4f665f5a82c) **feat:** Enter repeats last command
121+
- [`7d20b7d`](https://github.com./buggerjs/node-inspect/commit/7d20b7deadf1b251ea8cf2cc9167c175624932c4) **chore:** Add missing license header
122+
- [`23c62f8`](https://github.com./buggerjs/node-inspect/commit/23c62f8375ca7c8b71d032047e728dace02f4efa) **feat:** Print break context
123+
- [`5dbc83d`](https://github.com./buggerjs/node-inspect/commit/5dbc83df31171f9c38a974c99340bde26f2e24ec) **feat:** Stepping and breakpoints
124+
- [`8deb8cc`](https://github.com./buggerjs/node-inspect/commit/8deb8cc36b9fca432ab8df63a82e9de7ab5adaf0) **feat:** list for printing source
125+
- [`1ed2ec9`](https://github.com./buggerjs/node-inspect/commit/1ed2ec9937070652be611dbb6b11dfb42cb840f8) **chore:** Disable verbose output on CI
126+
- [`625a435`](https://github.com./buggerjs/node-inspect/commit/625a435925dd8fd980bed2dc9e3fd73dd27df4ef) **fix:** Gracefully handle delayed scriptParsed
127+
- [`8823c60`](https://github.com./buggerjs/node-inspect/commit/8823c60d347600b2313cfdd8cb5e96fe02419a8a) **chore:** Run all the tests
128+
- [`00506f7`](https://github.com./buggerjs/node-inspect/commit/00506f763928cc440505a81030167a11b9a84e00) **feat:** backtrace/bt
129+
- [`e1ee02d`](https://github.com./buggerjs/node-inspect/commit/e1ee02d5cc389916489d387d07d5dd161230427a) **refactor:** Leverage util.inspect.custom
130+
- [`5dcc319`](https://github.com./buggerjs/node-inspect/commit/5dcc31922d40f56c7435319d1538390a442e8e4b) **feat:** scripts and scripts(true)
131+
- [`085cd5a`](https://github.com./buggerjs/node-inspect/commit/085cd5a76a961edfcaa342fff5eb09bf2f9c8983) **refactor:** Consistent import style
132+
- [`1c60f91`](https://github.com./buggerjs/node-inspect/commit/1c60f91f233848c05d865617dc7f5aacb36270b6) **feat:** Set breakpoint before file is loaded
133+
- [`bc82ecc`](https://github.com./buggerjs/node-inspect/commit/bc82eccb2a1a7c0f5332371254f6584e748216aa) **feat:** breakpoints to list breakpoints
134+
- [`7f48c95`](https://github.com./buggerjs/node-inspect/commit/7f48c9510696ec400d51afaca8d23a9c292640f8) **feat:** watchers & exec
135+
- [`0f8cd13`](https://github.com./buggerjs/node-inspect/commit/0f8cd13a092e5dbeb395ff04cbe2ed97cb986423) **feat:** clearBreakpoint
136+
- [`0d31560`](https://github.com./buggerjs/node-inspect/commit/0d315603bdcb9f4da42fab24dc569c325151269e) **feat:** version to print v8 version
137+
- [`df6b89d`](https://github.com./buggerjs/node-inspect/commit/df6b89df580a9afcb3b8883b0e4224cbcebb384f) **feat:** Paused & global exec
138+
- [`9e97d73`](https://github.com./buggerjs/node-inspect/commit/9e97d73073ceffd70974d45887c84fadb9159d5c) **feat:** repl to enter exec mode
139+
- [`9ee9f90`](https://github.com./buggerjs/node-inspect/commit/9ee9f903d6202f54ed2b3b3559da4006b65d39b5) **feat:** run & restart
140+
* [`3a752aa`](https://github.com./buggerjs/node-inspect/commit/3a752aaa773968bfe16c5f543bd739feed598bea) **feat:** kill
141+
* [`a67e470`](https://github.com./buggerjs/node-inspect/commit/a67e47018b20d46aeeaa7abd27eb8e7770fd0b8f) **feat:** Restore breakpoints on restart
142+
143+
144+
### 1.3.3
145+
146+
* [`eb7a54c`](https://github.com./buggerjs/node-inspect/commit/eb7a54c6fa731ed3276072c72034046fc5ffbac6) **chore:** Switch to tap for tests
147+
148+
149+
### 1.3.2
150+
151+
* Add notes about governance - **[@jkrems](https://github.com./jkrems)** [#3](https://github.com./buggerjs/node-inspect/pull/3)
152+
- [`e94089d`](https://github.com./buggerjs/node-inspect/commit/e94089d93689cacf5c953e94563463d1e174452d) **chore:** Add notes about governance
153+
154+
155+
### 1.3.1
156+
157+
* [`8767137`](https://github.com./buggerjs/node-inspect/commit/8767137c53a2f6b1d36970074ea95be9871e50e3) **style:** Remove rogue console.log
158+
159+
160+
### 1.3.0
161+
162+
* [`3ac6232`](https://github.com./buggerjs/node-inspect/commit/3ac623219ba44b0af40ef66826610a26a46c7966) **feat:** Add `version` command
163+
164+
165+
### 1.2.0
166+
167+
* [`86b5812`](https://github.com./buggerjs/node-inspect/commit/86b581218ccab44e6bde259a17ad1e71645a6137) **feat:** scripts & listScripts(true)
168+
169+
170+
### 1.1.1
171+
172+
* [`feaea38`](https://github.com./buggerjs/node-inspect/commit/feaea385a981e6b72a8d99277fbf575c54e15fc6) **style:** Typo in comment
173+
174+
175+
### 1.1.0
176+
177+
* [`c64155f`](https://github.com./buggerjs/node-inspect/commit/c64155faa552f71463842a26330aa5bcbfc31670) **feat:** repl command
178+
179+
180+
### 1.0.0
181+
182+
* [`44c4c79`](https://github.com./buggerjs/node-inspect/commit/44c4c79af5a228ccfd8906f11409b2a33390b878) **chore:** Initial commit
183+
* [`985873c`](https://github.com./buggerjs/node-inspect/commit/985873cfb97146b38480080f9907219c473f1f6f) **feat:** Launching the example works
184+
* [`3d92d05`](https://github.com./buggerjs/node-inspect/commit/3d92d05cca152a2c2647aa64eefc80432638bc4d) **chore:** Proper license and passing tests
185+
* [`b3f99d9`](https://github.com./buggerjs/node-inspect/commit/b3f99d981038b17663fcfd984d2f5d6d9b51ee18) **feat:** Futile attempts to send a valid ws frame
186+
* [`465cfb7`](https://github.com./buggerjs/node-inspect/commit/465cfb7b295aebb48b285c26f6de9c4657fe590d) **feat:** Working ws connection
187+
* [`da9f011`](https://github.com./buggerjs/node-inspect/commit/da9f01118e2b144f2da8cd370113a608526774a1) **fix:** Fix remote connect
188+
* [`5ef33d7`](https://github.com./buggerjs/node-inspect/commit/5ef33d7892cc49becb4c66098fc7927bc74b014a) **feat:** Working step-by-step
189+
* [`534e1e4`](https://github.com./buggerjs/node-inspect/commit/534e1e46b307d61d51eb4c0aab4a3b17c17aea3d) **chore:** Add bin entry
190+
* [`8cff9cf`](https://github.com./buggerjs/node-inspect/commit/8cff9cfb0138b5ecff0f5f6a7839dbfddc0684fd) **style:** Use simpler key thingy
191+
* [`720ec53`](https://github.com./buggerjs/node-inspect/commit/720ec53a5b251ab3caf27f06b60924efb9e03a92) **doc:** Add instructions
192+
* [`b89ad60`](https://github.com./buggerjs/node-inspect/commit/b89ad601b885a417e6433b1609477d8453f498a1) **doc:** More helpful docs
193+
* [`de9243c`](https://github.com./buggerjs/node-inspect/commit/de9243c95eabe733d05952229340808c3cebf129) **feat:** Watchers
194+
* [`e16978f`](https://github.com./buggerjs/node-inspect/commit/e16978ff8e4b2b2bdccf88fd7d3905f525822981) **docs:** Working usage hints
195+
* [`2dbc204`](https://github.com./buggerjs/node-inspect/commit/2dbc2042145fd97169fc7536186a449715e27810) **refactor:** Use proxies
196+
* [`b8c9b14`](https://github.com./buggerjs/node-inspect/commit/b8c9b147713f63181396d5a7fe4c2f737b733b4c) **style:** Remove unused var
197+
* [`f6b4b20`](https://github.com./buggerjs/node-inspect/commit/f6b4b20a1d28d91cfe452b995f7dbe5f7c749e89) **feat:** Nicer inspect of remote values
198+
* [`36887c6`](https://github.com./buggerjs/node-inspect/commit/36887c66bbf26d540f087f80ddfec38462a33bdf) **fix:** Properly print watchers
199+
* [`7729442`](https://github.com./buggerjs/node-inspect/commit/77294426157a28cc76e339cb13916a205182641e) **feat:** Add pause command
200+
* [`e39a713`](https://github.com./buggerjs/node-inspect/commit/e39a7134873f06da37baaa9b6252cede4ad38d7a) **fix:** Properly format boolean properties
201+
* [`f8f51d7`](https://github.com./buggerjs/node-inspect/commit/f8f51d7a01e8d74023306a08a3d6e2da63d123e1) **fix:** Properly format numeric properties
202+
* [`89e6e08`](https://github.com./buggerjs/node-inspect/commit/89e6e087220f3c3cb628ac7541c44298485a2e04) **feat:** Add backtrace command
203+
* [`82362ac`](https://github.com./buggerjs/node-inspect/commit/82362acfc7ce22b4cccc64889ec136dedc8895ec) **feat:** Add setBreakpoint()
204+
* [`7064cce`](https://github.com./buggerjs/node-inspect/commit/7064ccec3b103683088d532abfe5b4e7c066948b) **feat:** Add `setBreakpoint(line)`
205+
* [`360580e`](https://github.com./buggerjs/node-inspect/commit/360580eba4353e81311e56df018eec0ca233da11) **feat:** Add run/kill/restart
206+
* [`b1b576e`](https://github.com./buggerjs/node-inspect/commit/b1b576e2645723a8575df544e0bfb672d60d9d91) **feat:** Add `help` command
207+
* [`2db4660`](https://github.com./buggerjs/node-inspect/commit/2db46609cd1c8543d31ebd5dc47e4c27ec254841) **feat:** Add remaining sb() variants
208+
* [`f2ad1ae`](https://github.com./buggerjs/node-inspect/commit/f2ad1aeedafb154043d70bb9195b10986d311d26) **fix:** Display breakpoints set into the future
209+
* [`73272f9`](https://github.com./buggerjs/node-inspect/commit/73272f9ace1f8546f8cad1d53627dbffba50bb4e) **refactor:** Make breakpoints more inspect friendly
210+
* [`507a71d`](https://github.com./buggerjs/node-inspect/commit/507a71de345a3de7fe144517e9f5ea264ff993e3) **feat:** Add breakpoints command
211+
* [`5fb3e5d`](https://github.com./buggerjs/node-inspect/commit/5fb3e5d17bbcfd45b264431547b3cf0b781c7640) **docs:** Link to Command Line API docs
212+
* [`81af501`](https://github.com./buggerjs/node-inspect/commit/81af501bbf85397e2078310c7f24a9ac5b7f02dc) **chore:** Fix license field

0 commit comments

Comments
 (0)