
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
mobx-flipper
Advanced tools

flipper-plugin-mobx-debugger allows you read React Native mobx logs inside Flipper now:
react-native-flipper in your React Native app:yarn add mobx-flipper react-native-flipper
# for iOS
cd ios && pod install
import {spy} from 'mobx';
import {createMobxDebugger} from 'mobx-flipper';
const store = new Store(); // your store
if (__DEV__) {
spy(createMobxDebugger(store));
}
import {addMiddleware} from 'mobx-state-tree';
import {createMstDebugger} from 'mobx-flipper';
const store = new Store(); // your store
if (__DEV__) {
addMiddleware(store, createMstDebugger(store));
}
Manage Plugins > Install Plugins > search "mobx-debugger" > Install
This plugin is inspired by flipper-plugin-redux-debugger.
FAQs
Mobx middleware for flipper
The npm package mobx-flipper receives a total of 167 weekly downloads. As such, mobx-flipper popularity was classified as not popular.
We found that mobx-flipper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.