New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-native-about

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

react-native-about

React Native About - General purpose package for hundreds of applications

latest
Source
npmnpm
Version
1.11.3
Version published
Maintainers
1
Created
Source

react-native-about

React Native package for about functionality.

🎯 Purpose

This is a general purpose package designed for hundreds of applications. It contains no app-specific code and is fully configurable and dynamic.

📦 Installation

npm install react-native-about

🚀 Usage

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'
  }
});

⚙️ Configuration

All functionality is configurable through props and configuration objects. No hardcoded app-specific values.

AboutConfig Interface

interface AboutConfig {
  appName?: string;
  appVersion?: string;
  appDescription?: string;
  developerName?: string;
  developerEmail?: string;
  website?: string;
  privacyPolicy?: string;
  termsOfService?: string;
  [key: string]: any; // Dynamic properties
}

📄 Version

Current version: 1.6.0

📜 License

MIT

Keywords

react-native

FAQs

Package last updated on 12 Dec 2025

Did you know?

Socket

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.

Install

Related posts