rocjs / roc

🐦 Modern JavaScript Development Ecosystem
MIT License
425 stars 23 forks source link

How to pass `--inspect` option to node #198

Closed GabrielDelepine closed 6 years ago

GabrielDelepine commented 6 years ago

Hi

I looking for the proper option to use the --inspect mode of node to be able to debug server-side

Thanks

dlmr commented 6 years ago

Hi!

This is what I would do.

node --inspect node_modules/.bin/roc start

https://github.com/rocjs/roc/blob/master/docs/Runtime.md#start-the-application-using-the-command-line-script-manually

GabrielDelepine commented 6 years ago

Wonderful, thanks!