-
Notifications
You must be signed in to change notification settings - Fork 6
/
CHANGELOG
93 lines (70 loc) · 2.21 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
== 0.2.3 / 2010-11-24
* minor release to fix version info
== 0.2.2 / 2010-11-23
* npm support (Isaac Z. Schlueter - [email protected])
== 0.2.3 / 2010-11-02
* node 0.3.0 support
== 0.2.0 / 2010-08-20
* bugfix: Compatibility with node v0.1.97 / v0.2.0.
* add stepout functionality
== 0.1.5 / 2010-05-30
* add history tracking
ndb> history
1 list
2 n
3 history
* repl
ndb> repl
Welcome to the ndb repl.
Type .break to exit.
repl> this
=> #<an Object>
repl> 1+1
=> 2
repl> .break
== 0.1.4 / 2010-05-20
* Implement backtrace command.
* set host with --host
* use --local option to run script directly -
a shortcut for starting the script with two commands:
Instead of:
$ node --debug-brk my_js.js &
$ ndb
The convenience --local is provided:
ndb --local my_js.js
* wait for remote host to be up. It'll spin in a loop and look for a connection every two
seconds instead of bombing out immediately if it doesn't find one.
== 0.1.3 / 2010-05-14
* fix off-by-one error when setting breakpoints (36f62560d62d653fde5bb789f38b172b2c6bdc0f)
* command line options
== 0.1.2 / 2010-04-27
- get ndb working with latest released version of node.js (0.1.91)
- exit when the remote process is finished (instead of stalling and eventually raising an error)
- add 'exit' as an alias for 'quit'
0.1.1.1 / 2010-04-08
-------
- Improved display of prompt (no additional prompts displayed)
- Fixed Bug #1 - "list command occasionally doesn't display code"
(http://github.com/smtlaissezfaire/ndb/issues/closed#issue/1)
- Add step (stepin)
- Improve eval support when require isn't defined
- Display errors when eval throws an error
- Add confirmation for setting a breakpoint:
ndb> break 6
Breakpoint 1 set at /Users/scotttaylor/src/git/ndb/spec/node.js:6
ndb> break 7
ndb> Breakpoint 2 set at /Users/scotttaylor/src/git/ndb/spec/node.js:7
0.1.0 / 2010-03-20
------------------
- Initial release
- Following commands are at least partially supported:
* list source (on current line)
* break points
* next
* continue
* eval / print
- A few meta commands:
* version
* verbose (for showing the interaction with the debugging server)
* rw - raw write json over the wire
* quit