Problem solved ya’ll. Worked great with the following code and pigpio.
const Gpio = require('pigpio').Gpio;
const relay = new Gpio(14, {mode: Gpio.OUTPUT});
var button = new blynk.VirtualPin(4);
button.on('write', function(relayValue) {
relay.digitalWrite(relayValue);
});