Live data from Hacker News

Node.js 8.0.0 has been delayed and will ship on or around May 30th

medium.com

1–8 of 8 posts

Re: Node.js 8.0.0 has been delayed and will ship on or around May 30th

#4
This is a fantastic decision imo. I like how "consumer and developer" driven they are being with this so as to have up to date deps.

I see this as waiting 2 months for a updated product line instead of jumping the gun on buying a MacBook Pro right this minute .

Re: Node.js 8.0.0 has been delayed and will ship on or around May 30th

#5
I just want a version that reliably produces stack traces that include a line of my code somewhere. I too often get some crash that has a random line from the guts of Node and nothing else. I often have to resort to putting log statements all over just to figure out what line caused the crash.

Re: Node.js 8.0.0 has been delayed and will ship on or around May 30th

#6
post #5

I just want a version that reliably produces stack traces that include a line of my code somewhere. I too often get some crash that has a random line from the guts of Node and nothing else. I often have to resort to putting log statements all over just to figure out what line caused the crash.

Totally understandable if its not possible, but if the error is in a package for example, RunKit might be a big help. We've put a ton of work in making great stack traces: http://blog.runkit.com/2017/02/01/stop-filing-bugs-file-a-co...

Re: Node.js 8.0.0 has been delayed and will ship on or around May 30th

#8
post #5

I just want a version that reliably produces stack traces that include a line of my code somewhere. I too often get some crash that has a random line from the guts of Node and nothing else. I often have to resort to putting log statements all over just to figure out what line caused the crash.

shameless plug: https://github.com/AriaMinaei/pretty-error

It allows you to abbreviate stack traces, ignore non-relevant modules, etc.