Every single book, tutorial and course out there says that node.js doesn't handle heavy CPU computation very well but I haven't crossed one that suggest any solution.
Do you think it is good idea to deal with said computation problem by writing separate worker in technology that better handles it and consume results from node via - say - REST API?
- Any suggestions on how to handle this?
- What is that you usually do?
- Did somebody already solved this problem?