vscode-nodejs-repl
vscode-nodejs-repl copied to clipboard
Visual Studio Code - Extension NodeJs REPL
Having a full document as a Node REPL is super neat, but if I finish typing a thing and the automatic parser kicks in while I'm trying to navigate somewhere...
Whenever I change something in REPL activated file, there is warning/error in the REPL output console.
Since there is some delay in seeing the output of the code, it might be useful to give a visual indiction as to when the code is executing or when...
[lostfields.nodejs-repl-unresponsive.cpuprofile.txt](https://github.com/lostfields/vscode-nodejs-repl/files/3123864/lostfields.nodejs-repl-unresponsive.cpuprofile.txt) - Issue Type: `Performance` - Extension Name: `nodejs-repl` - Extension Version: `0.5.13` - OS Version: `Linux x64 4.15.0-48-generic` - VSCode version: `1.33.1` :warning: Make sure to **attach** this file...
I forked the repo and I realized that there are not test cases for the plugin. If one is serious for the plugin development, we should start adding the test...
- Fix cannot import Node.js native modules, like `require('util')`; - Refactor all code. - Use child process of User's Node.js as REPL. - Fix cannot use api of User's Node.js....
```javascript let promises = [ Promise.resolve(1), Promise.reject('dada'), Promise.resolve(3) ] (async () => { try { let results = await Promise.all(promises); console.log(results.join(',')) } catch(ex) { console.log(ex) } })() ```
## Description When the service is start on a new file, everything work fine. But if the current file is save "`crtl+s`", the REPL extension is dispose. ## Steps to...