Nodemon – exclusion of files

In order to make NodeMon ignore a bunch of files from monitoring, you can start it as nodemon –ignore PATTERN [–ignore PATTERN2] where PATTERN is the name of a specific file, directory, or wildcard pattern. Make sure that if you use a wildcard, it is escaped. For example nodemon –ignore ‘lib/*.js’ –ignore README Alternatively, if … Read more