6 lines
54 B
Bash
Executable File
6 lines
54 B
Bash
Executable File
#!/bin/bash
|
|
while true; do
|
|
npm start
|
|
sleep 3
|
|
done
|