ps aux | grep node ##Find the process ID (second from the left)
kill -9 PROCESS_ID
killall node ##This may also work
Try deleting your node_modules folder and running npm install again.
rm -rf node_modules/
npm install
That should fix it.
dyld: lazy symbol binding failed: Symbol not found: _node_module_register