When WebStorm is used as IDE in combination with F12chooser.exe debug tools, Agave.HostCall errors start happening.
No errors and refreshes, and a stable developer experience.
We have a Office.js Word project, and use NodeJS to start a local server. After setting up the project, shared folder, localhost server and certificates the project works fine.
When the F12 debug tool is opened, and changes are made in Webstorm, the project does reload. After a while errors start happening and the Word extension starts throwing errors and refreshes every several seconds.
This issue affects us as we can not use the document inspector to select elements in the browser, and we can not preserve Javascript errors while developing.

cc @Zlatkovsky
@rvanlaak A couple of questions:
If the answer is yes to both questions, then try running with --live-reload false:
ng serve --live-reload false --port 44301
--ssl --ssl-key ssl\\development-certificate.key --ssl-cert ssl\\development-certificate.crt
You will have to manually reload the add-in in Word, though. If you have F12 Tools running, just hit CTRL + R while it has focus to reload the task pane. Otherwise, right-click the task pane in Word and select Reload.
The project is plain js / Ecmascript that gets compiled using Node / webpack, and yes it's served via ssl as otherwise Word will not be able to open it.
I am working on the project for several days now, and strangely enough the problem did not occur Yesterday. So, once the problems return I will try to collect more information from the side of npm.
Some additional info; the SecurityError is still happening, but it's leading towards security exceptions on the websockets.
I've applied adding ws://localhost and ws://localhost:3000 to the Internet Options now: https://stackoverflow.com/a/41643700/1794894
Will report back if problems still occur, or if problems are resolved.
@TheSamsterZA the problems still are occurring. Some more information I've found / tried:
This might has to do something with the combination Webpack / In-Word IE11 (?). It is an uncaught socket.js SecurityError that starts appearing when F12 debug tools are used.
@rvanlaak:
I've applied adding ws://localhost and ws://localhost:3000 to the Internet Options now
Try adding wss://localhost and wss://localhost:3000 to Internet Options as well.
How exactly are you running your local server? What npm script are you using?
Added wss:// protocols now as well, it seems something slightly changed but the problems are still occurring. Another reference: https://github.com/qzind/qz-print/issues/39
The addin runs by WebStorm executing nmp run start, with the start script:
webpack-dev-server --mode development --https --key ./certs/server.key --cert ./certs/server.crt --cacert ./certs/ca.crt --port 3000
The basis of the app was generated using the Yeoman generator, and the webpack config except for adding two more entries didn't change after that: https://github.com/OfficeDev/generator-office
Could it have something to do with socket.js iframe communication?
Please try updating webpack-dev-server as mentioned here: https://github.com/webpack/webpack-dev-server/issues/851#issuecomment-350513764
That's an alpha build, but it might get you unstuck.
The long-term solution would be to upgrade to Webpack 4 and use https://github.com/webpack-contrib/webpack-serve since webpack-dev-server is in maintenance mode now.
Replacing webpack-dev-server with webpack-serve solved the security exceptions. Thanks @TheSamsterZA 馃帀
Using webpack-serve should be advocated, as it indeed removes the socket.js dependency by native websockets, and Word addin is served via IE11 that natively supports it.
Problems were related to webpack-dev-server. Closing here.
I had the same questions.
How to remove the errors.
Most helpful comment
Replacing
webpack-dev-serverwithwebpack-servesolved the security exceptions. Thanks @TheSamsterZA 馃帀Using
webpack-serveshould be advocated, as it indeed removes thesocket.jsdependency by native websockets, and Word addin is served via IE11 that natively supports it.