New:Socket for Asana Is Now Available.Learn more
Get Started

@postio/address-finder-bundled

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@postio/address-finder-bundled

Drop-in UK address autocomplete for any website. Single <script> tag, no build step. Bundled distribution of @postio/address-finder.

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

@postio/address-finder-bundled

Pre-bundled drop-in build of @postio/address-finder — the UK address autocomplete for Postio, the UK validation API for addresses, emails and phone numbers. Use this package when you don't want a build step: drop a <script> tag in, configure, done.

First time? Sign up free — first 100 lookups on us, no card needed.

For bundler-based projects, use @postio/address-finder directly. For React, use @postio/react.

<input id="address-search" />
<input id="address-line-1" />
<input id="town" />
<input id="postcode" />

<script src="https://cdn.postio.co.uk/v1/address-finder.js"></script>
<script>
  Postio.AddressFinder.setup({
    apiKey: "pk_…",
    input: "#address-search",
    output: {
      address_line_1: "#address-line-1",
      post_town: "#town",
      postcode: "#postcode",
    },
  });
</script>

/v1/address-finder.js always points at the latest v1.x.x release. For exact pinning in production, use the immutable URL — same file, 1-year cache:

<script src="https://cdn.postio.co.uk/v1.0.0/address-finder.js"></script>

Use via jsDelivr / unpkg

The same artefact is on npm, so it's auto-mirrored:

<script src="https://cdn.jsdelivr.net/npm/@postio/address-finder-bundled@1"></script>
<script src="https://unpkg.com/@postio/address-finder-bundled@1"></script>

Use as a module

<script type="module">
  import { setup } from "https://cdn.postio.co.uk/v1/address-finder.esm.js";
  setup({ apiKey: "pk_…", input: "#search", output: { /* … */ } });
</script>

API

Identical to @postio/address-finder.

License

MIT.

Keywords

postio

FAQs

Package last updated on 12 Aug 2026

Related posts