https://github.com/oliverjash/grunt-develop
Grunt Task to run a Node.js Server while developing, auto-reloading on change.
https://github.com/oliverjash/grunt-develop
Last synced: about 2 months ago
JSON representation
Grunt Task to run a Node.js Server while developing, auto-reloading on change.
- Host: GitHub
- URL: https://github.com/oliverjash/grunt-develop
- Owner: OliverJAsh
- License: mit
- Created: 2013-03-12T19:29:18.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-12T19:31:46.000Z (about 12 years ago)
- Last Synced: 2025-03-28T06:51:12.945Z (2 months ago)
- Language: JavaScript
- Size: 99.6 KB
- Stars: 1
- Watchers: 2
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-develop - [](http://travis-ci.org/edwardhotchkiss/grunt-develop)
> Grunt Task to run a Node.js Server while developing, auto-reloading on change.
## Notes:
* Requires Grunt >= 0.4.0
* No need to modify/export your server or alter your applications code.**## Install
```bash
$ npm install grunt-develop
```## Setup Gruntfile.js:
```javascript
module.exports = function(grunt) {
grunt.initConfig({
develop: {
server: {
file: 'app.js'
}
}
});grunt.loadNpmTasks('grunt-develop');
// if you are also using "watch", place after
grunt.registerTask('default', ['develop','watch']);};
```
## Usage (Realtime development with restart on file changes)
```bash
$ grunt
```## License (MIT)
Copyright (c) 2013, Edward Hotchkiss.
## Author: [Edward Hotchkiss][0]
[0]: http://github.com/edwardhotchkiss/