ReactJS does not cause any errors. How to fix?

Ok I am building my first ReactJS application. I am using React Router. Both libraries are the latest version.

The problem is that ReactJS rarely causes errors. He just silently decides to do nothing when something is wrong.

Am I doing something wrong? Is there a way to enable bugs in React? I really slowed down due to the inability to debug what is happening.

+4
source share
1 answer

I found a problem. I wrapped React.render in a promise that destroyed / disabled all errors.

Lesson learned :-)

+1
source

All Articles