Created
July 30, 2011 06:32
-
-
Save AnsonT/1115264 to your computer and use it in GitHub Desktop.
CoffeeScript debugging with node-inspector
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node-inspector & | |
coffee --nodejs --debug app.coffee & | |
google-chrome http://127.0.0.1:8080/debug?port=5858 & | |
google-chrome http://127.0.0.1:3000 & |
Yes this is not right solution..check this http://stackoverflow.com/questions/15801143/coffeescript-sourcemap-not-loading-in-chrome
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This doesn't work for me. I can see the compiled JavaScript sources in Chrome but setting breakpoints does not work, i.e., the code doesn't actually break in the breakpoints specified. Is anyone else having the same problem?