# expo-version-checker

> Version checker for expo applications

Latest version **1.0.2** (published 2022-11-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install expo-version-checker
pnpm add expo-version-checker
yarn add expo-version-checker
bun add expo-version-checker
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2022-11-14 |
| First published | 2022-11-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 3.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Hashir |
| Maintainers | enipx |
| Keywords | version checker, expo, react-native, android, ios, app store version, playstore store version, version check, version |

## Links

- npm: https://www.npmjs.com/package/expo-version-checker
- Repository: https://github.com/enipx/expo-version-checker
- Homepage: https://github.com/enipx/expo-version-checker#readme
- Issues: https://github.com/enipx/expo-version-checker/issues
- npm.io page: https://npm.io/package/expo-version-checker

## Dependencies (2)

- [expo-constants](https://npm.io/package/expo-constants.md) 14.0.0
- [react-native-version-check](https://npm.io/package/react-native-version-check.md) ^3.4.3

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2022-11-14
- 1.0.1 — 2022-11-14
- 1.0.0 — 2022-11-14

## README

# expo-version-checker

This project is built around this package <https://github.com/kimxogus/react-native-version-check> to run smoothly on expo.

## Getting started

- npm

```bash
npm install expo-version-checker
```

- yarn

```bash
yarn add expo-version-checker
```

## Usage

```javascript
import VersionCheck from 'expo-version-checker';

VersionCheck.getLatestVersion()
 .then(latestVersion => {
  console.log(latestVersion);
 });

VersionCheck.needUpdate()
.then((res) => {
  console.log(res);    // { currentVersion: 1.0.2, isNeeded: true, latestVersion: 1.0.4, storeUrl: IOS | Android Url }
  if (res.isNeeded) {
 // you can do whatever you want here open
 }
});

```

Full doc available at <https://github.com/kimxogus/react-native-version-check>

---
_Source: https://npm.io/package/expo-version-checker · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
