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.
Install pm2
pm2
$ npm install pm2 -g
Now start gulp
gulp
pm2 start gulp serve
You can view running services using pm2 l and Note: sometimes you can see your services running on next to port you specified example: http://localhost:3001 instead of http://localhost:3000
pm2 l