It's running with webpack.
Do you mean its been bundled with webpack?
Either way, if you're trying to bundle the child_process
module for use client-side, you won't be able to. It needs the Node Core in order to run since it spawns/forks a new process at the os level. Its not going to automagically spawn a WebWorker or some browser equivalent.
The above is true for the other Node Core API's, they just aren't portable as they exist, they're meant to be run server-side. This github repo has a list of Node.js Core API's that have been ported to the browser.