babel-node-debug icon indicating copy to clipboard operation
babel-node-debug copied to clipboard

node-inspector's node-debug using babel-node

Results 9 babel-node-debug issues
Sort by recently updated
recently updated
newest added

``` $ npm install -g babel-node-debug > [email protected] preinstall /Users/chris/.nvm/versions/node/v4.2.3/lib/node_modules/.staging/v8-profiler-1a869fbb > npm install node-pre-gyp /Users/chris/.nvm/versions/node/v4.2.3/bin/node-pre-gyp -> /Users/chris/.nvm/versions/node/v4.2.3/lib/node_modules/node-pre-gyp/bin/node-pre-gyp /Users/chris/.nvm/versions/node/v4.2.3/lib └── [email protected] > [email protected] preinstall /Users/chris/.nvm/versions/node/v4.2.3/lib/node_modules/.staging/v8-debug-417c0279 > node -e 'process.exit(0)' /Users/chris/.nvm/versions/node/v4.2.3/lib └──...

i run babel-node-debug and chrome browser pop up and then, the Debug page is not loaded. Thefore, I enter http://127.0.0.1:8080/?port=5858 on chrome browser. A black message shows 'websocket_closed' . Does...

Cannot debug a module that requires babel-polyfill: ``` throw new Error("only one instance of babel-polyfill is allowed"); ^ Error: only one instance of babel-polyfill is allowed at Object. (/..../node_modules/babel-polyfill/lib/index.js:8:9) at...

Hi. Can you explain me how to run `babel-node-debug` together with `--debug` mode? ``` babel-node-debug index.js ``` It shows: `Debugger listening on port 5858`, therefore I'm not allowed to run...

When starting my app like ``` export NODE_ENV=development && babel-node ./server.js ``` and babel-node-debug with ``` ./node_modules/.bin/babel-node-debug server.js ``` The browser opens and I'm able to set breakpoints in my...

For some reason it's not reading my babelrc file, so it doesn't know what to do with my syntax :(

I can not debug ES5 instead of ES6 Do not you get the sourceMaps as it does?

Loading the inspector requires "pausing" before I can hit "resume", which then pauses on first line with `--debug-brk` option. _test.js_ ``` js (function(b) { let a = b+'!'; debugger; })('test');...

Anyone has any idea on how to use it with mocha? I've tried mocha --debug-brk but it doesn't seem to work out of the box.