npm install --save-dev nodemon#or using yarn: yarn add nodemon -D With a local installation, nodemon will not be available in your system path or you can't use it directly from the command line. Instead, the lo
This is particularly useful if you're working with a language that isn't supported by default by nodemon. To add support for nodemon to know about the .pl extension (for Perl), the nodemon.json file would add: { "execMap": { "pl": "perl" } } Now running the following, nodemon ...