Skip to content

Instantly share code, notes, and snippets.

@Senither
Created June 18, 2017 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Senither/646d386c16b64137e2c2e9aa3f76f1ca to your computer and use it in GitHub Desktop.
Save Senither/646d386c16b64137e2c2e9aa3f76f1ca to your computer and use it in GitHub Desktop.
Starts a node application in the current folder and clears the window at the same time
#!/bin/bash
while true; do
clear && npm start
echo ""
echo "The application has been stopped, and will restart in 5 seconds."
echo "Press Ctrl+C to interrupt the process."
sleep 5
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment