coffee-trace

1.4.0 • Public • Published

Coffee-Trace

Makes debugging coffee-script easier by displaying corresponding lines of code in the stack-trace with style

Coffee-Trace

About Coffee-Trace

Coffee-Trace makes debugging coffeescript code easier by attempting to point corresponding coffeescript code and line numbers and styling the stacktrace a little bit.

WARNING: This is obviously for aiding development needs and by no means intended for production use. It is also, by far, my ugliest piece of code. You've been warned.

Install and Usage

Unleash your inner masochist and enjoy uncaughtException and stack-traces, just by installing with:

npm install coffee-trace

and then

# Require it at the very beginning of your code 
require('coffee-trace')

Example

Running this..

require('coffee-trace')
 
test = ->
  people =
    john:
      first_name: 'john'
      last_name: 'doe'
    mary:
      first_name: 'mary'
      last_name: 'jane'
 
  console.log("Welcome"people[p].first_namepeople[p].last_name"!!!") for p in ['john''mary''josh']
 
process.nextTick test

will result in this: Coffee-Trace

Why?

If you love Coffee-Script and Node.js, you will provably also be frustrated by the challenges of quickly finding and debugging the coffee-script line corresponding to the one pointed out by the stack-trace.

I've been searching a cleaner solution myself, and have found some very useful links and discussions, but am yet unsatisfied. So, while SourceMaps implementation in Coffee-Script is a reality, this is the least I can do.

ToDo ( Utopic Future High Hopes)

  • Beautify and comment code
  • Async API for code sandboxing
  • Returning a decent stack trace object (with coffee file, line and all).
  • A more complete testing

Readme

Keywords

none

Package Sidebar

Install

npm i coffee-trace

Weekly Downloads

17

Version

1.4.0

License

MIT

Last publish

Collaborators

  • xenomuta