grunt-express-server
grunt-express-server copied to clipboard
Grunt task for running an Express Server that works great with LiveReload + Watch/Regarde
Can someone please take a look at this issue https://stackoverflow.com/questions/50057587/cant-find-the-default-port-of-grunt-express-server
Maybe this is a windows issue, but when using the "background: true" option, the server is started up and then immediately terminated. It does not continue running.
Watch detects changes and restarts express server.... but the browser never refreshes to see those changes. Usually you have to inject livereload client into the html pages for this to...
https://github.com/patrikx3/grunt-p3x-express
I have app.js in the root directory and I do a build; copying app.js to 'dist'. I then have grunt-express-server configured to use the script path.join(dist, pkg.main) -- in other...
Hi Eric, Thank you for this useful grunt task. Great work! Currently, `grunt-express-server` supports overriding two environment variables, PORT and NODE_ENV. I feel it'd be nice to extend this and...
(alert: I'm new to grunt-express-server and many of the surrounding tools, so issue may be little more than my lack of understanding and/or out-of-date docs). I started using grunt-express-server yesterday,...
When I specify a port e.g. ``` Javascript express: { options: { script: './app.js', port: 8080 }, dev: { options: {} } } ``` The port is ignored and `grunt-express-server`...
I've tried `args: ["|", "bunyan"]` and `script: "/path/to/server.js | bunyan"` but neither worked. :( otherwise it's amazing and fills a desperate need, so THANK YOU!