Tired of having to check the platform before you can launch the correct spawn
command? This module gives you the correct command and arguments according to your platform.
npm install platform-shell-command --save
const spawn = require('child-process').spawn
const platformShellCommand = require('platform-shell-command')
const {command, args} = platformShellCommand('node foobar.js')
spawn(command, args)
Command and arguments will end up spawning:
/bin/sh -c node foobar.js
on linuxcmd.exe /d /s /c "node foobar.js"
on windows
MIT