
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@mustmove/overlay-kit-rn
Advanced tools
React Native overlay management library for modals and bottom sheets.
npm install @mustmove/overlay-kit-rn
This library requires the following peer dependencies:
npm install react-native-reanimated react-native-gesture-handler @mustmove/bottom-sheet react-native-worklets
import { overlay, OverlayProvider } from '@mustmove/overlay-kit-rn';
// 1. Wrap your app with OverlayProvider
function App() {
return (
<OverlayProvider>
<YourAppContent />
</OverlayProvider>
);
}
// 2. Create your modal component
const MyModal = ({ close }) => (
<View>
<Text>Hello Modal!</Text>
<Button title="Close" onPress={close} />
</View>
);
// 3. Open the modal
const openModal = () => {
overlay.open(MyModal, {
overlayType: 'modal',
modalType: 'center',
});
};
overlay.open(Component, options)Opens an overlay with the specified component.
overlay.open(YourComponent, {
overlayType: 'modal' | 'bottomSheet' | 'overlay',
// Modal specific options
modalType: 'center' | 'bottom' | 'top' | 'left' | 'right',
backdropOpacity: 0.5,
animationType: 'slideInUp' | 'slideInDown' | 'bounceIn' | 'fadeIn',
// Bottom sheet specific options
snapPoints: ['25%', '50%', '90%'],
enablePanDownToClose: true,
});
overlay.openAsync(Component, options)Opens an overlay and returns a promise that resolves with the result.
const result = await overlay.openAsync(AsyncComponent, {
overlayType: 'modal',
});
Your overlay components receive these props:
interface OverlayComponentProps {
close: (result?: any) => void;
}
MIT
FAQs
React Native overlay management library
The npm package @mustmove/overlay-kit-rn receives a total of 0 weekly downloads. As such, @mustmove/overlay-kit-rn popularity was classified as not popular.
We found that @mustmove/overlay-kit-rn demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.