I have a cron job setup, with the minimum value of 60 seconds, and I want the program to be able to run at second intervals i.e. whatever I set it as 60 seconds onwards.
cron.schedule('*/' + test + '0,x * * * * *', function () { console.log('running a task every x seconds'); });
this will run every x seconds.