Changelog
v2.4.4 2013 October 10
followLinks
to false
- Thanks to Fredrik Noren for pull request #47Changelog
v2.3.9 2013 March 17
duplicateDelay
is falsey we will not do a duplicate checkChangelog
v2.3.8 2013 March 17
Object #<Object> has no method 'emit'
error - Thanks to Casey Foster for pull request #32Changelog
v2.3.7 2013 February 6
preferredMethod
option into preferredMethods
which accepts an array, defaults to ['watch','watchFile']
interval
option to default to 5007
(recommended by node) instead of 100
as it was before - The watch
method provides us with immediate notification of changes without utilising polling, however the watch
method fails for large amounts of files, in which case we will fall back to the watchFile
method that will use this option, if the option is too small we will be constantly polling the large amount of files for changes using up all the CPU and memory, hence the change into a larger increment which has no CPU and memory impact.