zalmoxisus / mobx-remotedev

MobX DevTools extension
MIT License
327 stars 40 forks source link

MobX 6 (Cannot obtain atom from undefined) #55

Open Aleksandern opened 4 years ago

Aleksandern commented 4 years ago

Doesn't work with MobX 6: [MobX] Cannot obtain atom from undefined

Aleksandern commented 4 years ago

@zalmoxisus Hi Mihail, Do you still maintain this package?

sudosubin commented 4 years ago

I am not the maintainer, but I had the same issue and solved.

You might need to upgrade mobx-state-tree package to rc version. (v4) Same for mst-middlewares.

npm install mobx-state-tree@rc;
npm install mst-middlewares@rc;
yarn add mobx-state-tree@rc;
yarn add mst-middlewares@rc;

Check this Issue: https://github.com/mobxjs/mobx-state-tree/pull/1569

alex-shamshurin commented 4 years ago

Are there any replacements for this package ( if it's not maintained anymore ) ?

kubk commented 3 years ago

@Aleksandern I've switched from Redux devtools to a simple browser logger: https://github.com/kubk/mobx-log

I am going to add Redux devtools support but for me it's no longer needed, because the logger already covers most of its usecases like inspecting store, calling actions and computeds.

Aleksandern commented 3 years ago

@kubk Can your logger work with React Native Debugger https://github.com/jhen0409/react-native-debugger?

kubk commented 3 years ago

@Aleksandern Unfortunately I am not familiar with this tool as well as React Native development in general.