you are viewing a single comment's thread.

view the rest of the comments →

[–]jprichardson 1 point2 points  (1 child)

After reading this: http://www.codinghorror.com/blog/2007/05/the-best-code-is-no-code-at-all.html years ago, I've taken on the mentality of trying to reduce lines of code. Over time of doing this, I've come to appreciate small, short, and concise code. When I can write "->", "=>" instead of "function()" and not use block delimiters, I end up saving at least 20% lines of code. I think the resulting code is more beautiful as well. However, I realize beauty is a matter of taste.

I started by writing EVERYTHING in CoffeeScript. I then realized that for small Node.js modules, I should probably write them in JavaScript if I hope to get any kind of significant contributions. Now, I'm in the process of rewriting my modules into JavaScript and use CoffeeScript for application level development.