44dd315c6f0a6d8802ddb83d2db557e8f45f5421
				
			
			
		
	smartchok
smart wrapper for chokidar
Availabililty
Status for master
Usage
Use TypeScript for best in class instellisense.
import { Smartchok } from 'smartchok'
let mySmartChok = new Smartchok(['some/path/**/*.any','/absolute/*.js'], chokidarOptions)
mySmartChok.add(['/some/**/*.any']) // add files
mySmartChok.remove('some/**/*.js')
mySmartChok.start() // starts the watch process
mySmartChok.getObservableFor('change').then((observableArg) => {
    observableArg.subscribe(x => {
        // do something here when a change is detected
        // possible events are 'add' | 'addDir' | 'change' | 'error' | 'unlink' | 'unlinkDir' | 'ready' | 'raw'
        // note that the observable is only created once you call .start() on the Smartchok instance
        // hence the promise construction
    })
})
mySmartChok.stop()
For further information read the linked docs at the top of this README.
MIT licensed | © Lossless GmbH
Description
				
					Languages
				
				
								
								
									TypeScript
								
								100%