
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
react-native-about
Advanced tools
React Native About - General purpose package for hundreds of applications
React Native package for about functionality.
This is a general purpose package designed for hundreds of applications. It contains no app-specific code and is fully configurable and dynamic.
npm install react-native-about
import { About } from 'react-native-about';
// Initialize with your app configuration
About.init({
appName: 'My App',
appVersion: '1.0.0',
appDescription: 'My awesome application',
developerName: 'John Doe',
developerEmail: 'john@example.com',
website: 'https://myapp.com'
});
// Get about information
const info = About.getInfo({
appName: 'My App',
appVersion: '1.0.0'
});
// Use with dynamic props
const result = About.execute({
config: {
appName: 'My App'
}
});
All functionality is configurable through props and configuration objects. No hardcoded app-specific values.
interface AboutConfig {
appName?: string;
appVersion?: string;
appDescription?: string;
developerName?: string;
developerEmail?: string;
website?: string;
privacyPolicy?: string;
termsOfService?: string;
[key: string]: any; // Dynamic properties
}
Current version: 1.6.0
MIT
FAQs
React Native About - General purpose package for hundreds of applications
We found that react-native-about 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.