Is it possible to run Gulp script with forever?
I have Gulp script that would like to run as a daemon, so I could start / stop / list it.
Okay, so I solved it by linking the gulp binary from /usr/bin to my local folder and then simply running the command locally. Like so:
ln -s /usr/bin/gulp ./gulp forever start gulp serve
The commands may vary for you but I hope you get the gist of it.