This script
0 0/3 * * * node test.js
is used to schedule the job in Ubuntu, How to set the same way in Windows using node-schedule npm package?
As a work around , have scheduled the script in Task Scheduler:
cmd /c c:\node\node.exe c:\myscript.js
I want to to know how this can be done in node-schedule npm package.