Live data from Hacker News

Ask HN: How to generate/find mock stack traces?

news.ycombinator.com

1–4 of 4 posts

Re: Ask HN: How to generate/find mock stack traces?

#3

In JavaScript you can arbitrarily generate a stack trace at any point without interruption. console.log(new Error().stack);

Got it. I'll look more into this. I understand that I can script errors myself. I wanted to see if there already exists a dataset that could provide me with different kinds of stack traces.

Either way, I'll look into the solution you're suggesting too. Thanks so much