├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── package.json ├── tasks ├── express.js └── lib │ └── server.js └── test ├── app.coffee ├── app.js ├── custom_args_test.js ├── custom_cmd_test.js ├── custom_delay_test.js ├── custom_harmony.js ├── custom_node_env_test.js ├── custom_output_test.js ├── custom_port_test.js ├── defaults_test.js ├── fixtures └── hello.txt ├── lib └── get.js ├── server-quiet.js ├── server.coffee ├── server.js ├── server_malformed.js └── stoppable_test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/package.json -------------------------------------------------------------------------------- /tasks/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/tasks/express.js -------------------------------------------------------------------------------- /tasks/lib/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/tasks/lib/server.js -------------------------------------------------------------------------------- /test/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/app.coffee -------------------------------------------------------------------------------- /test/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/app.js -------------------------------------------------------------------------------- /test/custom_args_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/custom_args_test.js -------------------------------------------------------------------------------- /test/custom_cmd_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/custom_cmd_test.js -------------------------------------------------------------------------------- /test/custom_delay_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/custom_delay_test.js -------------------------------------------------------------------------------- /test/custom_harmony.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/custom_harmony.js -------------------------------------------------------------------------------- /test/custom_node_env_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/custom_node_env_test.js -------------------------------------------------------------------------------- /test/custom_output_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/custom_output_test.js -------------------------------------------------------------------------------- /test/custom_port_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/custom_port_test.js -------------------------------------------------------------------------------- /test/defaults_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/defaults_test.js -------------------------------------------------------------------------------- /test/fixtures/hello.txt: -------------------------------------------------------------------------------- 1 | Howdy! 2 | -------------------------------------------------------------------------------- /test/lib/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/lib/get.js -------------------------------------------------------------------------------- /test/server-quiet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/server-quiet.js -------------------------------------------------------------------------------- /test/server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/server.coffee -------------------------------------------------------------------------------- /test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/server.js -------------------------------------------------------------------------------- /test/server_malformed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/server_malformed.js -------------------------------------------------------------------------------- /test/stoppable_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericclemmons/grunt-express-server/HEAD/test/stoppable_test.js --------------------------------------------------------------------------------