
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.
nativeredirect
Advanced tools
A minimal, zero-dependency utility for redirecting mobile web users to native apps (deep linking) with a web fallback.
import { redirect } from 'nativeredirect';
redirect({
// The current web URL (used for query param parsing and default fallback)
url: window.location.href,
// Custom Scheme for iOS
ios: {
scheme: 'myapp', // resulting URL: myapp://path?query
path: 'products/123' // Optional override
},
// Intent URL for Android
android: {
scheme: 'myapp',
packageName: 'com.example.myapp'
},
// Fallback URL if app is not installed (defaults to `url` above)
fallback: 'https://example.com/download'
});
navigator.userAgent and navigator.platform to determine if the user is on iOS or Android.scheme://path?queryintent://path?query#Intent;scheme=scheme;package=com.example;end;window.location.assign.redirect calls in these environments to keep the user on the web.FAQs
Minimal web-to-native app redirect utility
We found that nativeredirect 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.

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.