Andrey Sidorov
Andrey Sidorov
you probably need to close stdin ( just a guess ). It's been a while I had a look at this project, can you a bit of context why are...
Yeah, at the moment it always starts in repl mode, I can see that "execute and exit" might be useful
hi! yes, probably a good feature to add. Similar puppeteer code: https://github.com/GoogleChrome/puppeteer/blob/bd73e4b7b814f0a9df97158f9102e486618c6075/lib/Page.js#L678-L690
@1db8k it's a bit hard to figure out which process to kill - chrome forks after initial start and there are multiple processes to track
https://developer.chrome.com/devtools/docs/remote-debugging-legacy
extensions still require exclusive access ( e.i when you open devtools extension is disabled ): > Opening embedded Developer Tools will [terminate](https://developer.chrome.com/devtools/docs/debugger-protocol#simultaneous) the remote connection and thus detach the extension....
not sure if I get the idea. Are you talking about multi line input?
multiline input would be tricky with repl/readline. Node starts 'multiline mode' when there is syntax error - see https://github.com/joyent/node/blob/master/lib/repl.js#L296 Not sure if that is desired behaviour at all. Maybe we...
Feel free to try to implement it yourself :)
It will throw exceptions for some valid code, for example if you reference on the right hand side variable which is defined in remote context but not defined locally. I...