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

get-app-info

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get-app-info

A simple React Native utility to get app platform, version, version code, app name, and bundle identifier.

latest
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

get-app-info

A simple React Native utility to get:

  • Platform (Android/iOS)
  • App Name
  • App Version
  • App Version Code
  • Bundle ID

After Installing, Run: npm install get-app-info react-native-device-info

🔧 Installation

npm install get-app-info

import getAppInfo from 'get-app-info';

(async () => { const info = await getAppInfo(); console.log(info); })();

output

{ "platform": "android", "appName": "MyApp", "appVersion": "1.2.3", "appVersionCode": "12", "bundleId": "com.mycompany.myapp" }

Keywords

react-native

FAQs

Package last updated on 15 May 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