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.
Try this:
forever start -c "gulp" serve
The -c option allows you to use any command.
-c