We can schedule regular shell commands within Laravel scheduled command
1// app/Console/Kernel.php2 3class Kernel extends ConsoleKernel4{5 protected function shedule(Schedule $shedule)6 {7 $shedule->exec('node /home/forge/script.js')->daily();8 }9}
Tip given by @anwar_nairi