I'm using node-inspector. I have run debugger, and the console is paused where the debugger has started:
> var z = 1
undefined
> z
ReferenceError: z is not defined
Setting globals seems to work:
> a = 1
1
> a
1
Is node-inspector broken or an I doing something wrong?
I am using node-inspector 0.5, which is the latest at the time I'm writing this.