diff --git a/README.md b/README.md index 4a22c77..7875f7a 100644 --- a/README.md +++ b/README.md @@ -236,6 +236,10 @@ Check out the [gulp-nodemon](https://github.com/JacksonGariety/gulp-nodemon) plu Check out the [grunt-nodemon](https://github.com/ChrisWren/grunt-nodemon) plugin to integrate nodemon with the rest of your project's grunt workflow. +## FAQ + +See the [FAQ](https://github.com/remy/nodemon/blob/master/faq.md) and please add your own questions if you think they would help others. + # License MIT [http://rem.mit-license.org](http://rem.mit-license.org) \ No newline at end of file diff --git a/faq.md b/faq.md index 3e18b6c..6750a20 100644 --- a/faq.md +++ b/faq.md @@ -128,4 +128,11 @@ For example, on `lib/app.js` being changed: The new `nodemon.json` superceeds the `.nodemonignore` file, so if you have both, the `.nodemonignore` is not used at all. -Note that if you have a `nodemon.json` in your `$HOME` path, then this will also superceed the old ignore file. \ No newline at end of file +Note that if you have a `nodemon.json` in your `$HOME` path, then this will also superceed the old ignore file. + +## nodemon does nothing + +On Ubuntu globally installed node applications have been found to have no output when they're run. This *seems* to be an issue with node not being correctly installed (possibly linked to the binary having to be called `nodejs`). + +The solution (that's worked in the past) is to install [nvm](https://github.com/creationix/nvm) first and using it to install node, *rather* than using `apt-get` (or similar tools) to install node directly. +>>>>>>> master