node.js how to run mount command

In node.js application which is being run by non-root user, how to run system mount command when user enter the remote host path? The mount command is allowed only for root.

I tried exec("su") to enter password & mount command but I cannot see even any prompt for asking password. The password prompt seems not to be stdout. What is effective way to mount remote shared directory in node.js?

thanks