- live-server currently reloads the browser when watched files change, but it does not expose any programmatic hook or callback for file change events. #### Proposed API (example) ```js liveServer.start({ onChange(filePath) { console.log(filePath); } }); ``` Thanks.