# dhl-packstation-validation

> This package validates addresses of a DHL Packstation or lists the nearby DHL Packstation close to an zip code.

Latest version **0.1.2** (published 2021-08-09) · ISC license · 0 weekly downloads

## Install

```sh
npm install dhl-packstation-validation
pnpm add dhl-packstation-validation
yarn add dhl-packstation-validation
bun add dhl-packstation-validation
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2021-08-09 |
| First published | 2021-08-07 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 5.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Marcel-Tronco |
| Maintainers | marcel-tronco |
| Keywords | dhl, packstation, validation |

## Links

- npm: https://www.npmjs.com/package/dhl-packstation-validation
- Repository: https://github.com/Marcel-Tronco/dhl-packstation-validator
- Homepage: https://github.com/Marcel-Tronco/dhl-packstation-validator#readme
- Issues: https://github.com/Marcel-Tronco/dhl-packstation-validator/issues
- npm.io page: https://npm.io/package/dhl-packstation-validation

## Dependencies (1)

- [node-fetch](https://npm.io/package/node-fetch.md) ^2.6.1

## 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

- 0.1.2 (latest) — 2021-08-09
- 0.1.1 — 2021-08-07
- 0.1.0 — 2021-08-07

## README

# DHL Packstation validation

## Description
This package helps to validate the address of a Packstation of DHL by its Number and the zip code. It also allows to retrieve a list of Packstationen close to the location of a zip code.

## Usage
### Packstation Address Validation
```
import { isValidAddress } from 'dhl-packstation-validation'

isValidAddress(<your zip code>, <your packstation number>).then((isValid) =>
 if (isValid) {
   // do something
 }
)
```
### Retrieve List of Packstationen

```
import { listAddresses } from 'dhl-packstation-validation'

listAddresses(<your zip code>).then((list) => {
  // do something with the list
})

```

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