re-frame

https://github.com/Day8/re-frame/blob/master/docs/README.md https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
gibi 2021-05-01T12:21:04.373500Z

Hi 👋 I'm running todomvc excample following the steps documented in the re-frame repository and I'm getting this error when loading the app in Chrome and Safari, am I doing anything wrong? Thanks

An error occurred when loading todomvc.core.js
ypeError: $jscomp.arrayFromIterable is not a function
    at Function.memoizedFn [as isOnHashChangeSupported] (:8280/js/cljs-runtime/goog.memoize.memoize.js:36)

anonimitoraf 2021-05-01T18:09:03.374600Z

Hi guys, How do you handle uncaught errors in an event handler? Seems like React's error boundaries don't do the trick

p-himik 2021-05-01T18:13:32.374700Z

From the FAQ: https://github.com/day8/re-frame/issues/231#issuecomment-249991378 I just listen for all uncaught errors and report them.

anonimitoraf 2021-05-01T18:33:14.375Z

> https://github.com/day8/re-frame/blob/master/docs/FAQs/CatchingEventExceptions.md Ah, thanks. Ill have a read!