# ezloc

> ## Example

Latest version **0.0.17** (published 2025-03-14) · ISC license · 0 weekly downloads

## Install

```sh
npm install ezloc
pnpm add ezloc
yarn add ezloc
bun add ezloc
```

## Health

**Score 25/100 (F)** — status: maintenance-mode.

Positive: no vulnerabilities.

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

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.17 |
| Published | 2025-03-14 |
| First published | 2025-02-22 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 25.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | trax |

## Links

- npm: https://www.npmjs.com/package/ezloc
- npm.io page: https://npm.io/package/ezloc

## Dependencies (4)

- [ezloc](https://npm.io/package/ezloc.md) 0.0.3
- [expo-location](https://npm.io/package/expo-location.md) ^18.0.7
- [expo-keep-awake](https://npm.io/package/expo-keep-awake.md) ~14.0.3
- [expo-task-manager](https://npm.io/package/expo-task-manager.md) ^12.0.5

## Recent versions

- 0.0.17 (latest) — 2025-03-14
- 0.0.16 — 2025-03-14
- 0.0.15 — 2025-03-14
- 0.0.14 — 2025-03-14
- 0.0.13 — 2025-03-04
- 0.0.12 — 2025-03-04
- 0.0.11 — 2025-03-02
- 0.0.10 — 2025-03-02
- 0.0.9 — 2025-02-23
- 0.0.8 — 2025-02-23
- 0.0.7 — 2025-02-23
- 0.0.6 — 2025-02-23
- 0.0.5 — 2025-02-23
- 0.0.4 — 2025-02-23
- 0.0.3 — 2025-02-22
- … 2 more at https://npm.io/package/ezloc/versions

## README

# EZLoc 

## Example 

```tsx
// App.tsx
import React from 'react';
import { View, Text } from 'react-native';
import { useBestLocation } from './useBestLocation';

export default function App() {
  const bestLocation = useBestLocation();

  return (
    <View>
      <Text>
        {bestLocation
          ? `Lat: ${bestLocation.coords.latitude}, Lon: ${bestLocation.coords.longitude}`
          : 'Waiting for location...'}
      </Text>
    </View>
  );
}
```

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