I would like to increase the call stack limit for my node process so that I can create, parse and serialize a recursive object that's about 100,000
layers deep. If I had more time, I should represent this in a better format.
But for a quick fix, there is a suggested solution to do something like:
/bin/bash -c "ulimit -s $n; exec /usr/local/bin/node --stack-size=$n app.js"
Are there any repercussions that I need to worry about?