How to use Promise with exec in Node.js
Support for Promise in web browsers has come a long way, with only good old IE11 needing a polyfill to support it. According to the documentation at MDN, "the Promise object represents the eventual...
https://medium.com/@ali.dev/how-to-use-promise-with-exec-in-node-js-a39c4d7bbf77

- pass large parameter data - shared data
Pass large array to node child process
I have complex CPU intensive work I want to do on a large array. Ideally, I'd like to pass this to the child process.
https://stackoverflow.com/questions/44052913/pass-large-array-to-node-child-process

Seonglae Cho