
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
@zerodep/address-parse
Advanced tools
An address parser for American and Canadian addresses that breaks down the provided address into its component parts
A utility that parses an address into its component pieces based on American and Canadian standards.
This parser will:
Note that this is only a parser and does not guarantee that an address exists or is correct as it only works given the information provided. Given the variety of address formats and creativity of how people write addresses, this parser occasionally mis-identifies the specific components but the "line" values are usually stil. correct.
Full documentation is available at the zerodep.app page.
declare const addressParse: (line: string, options?: AddressOptions) => Address;
interface Address {
source: string; // The source address provided
normalized: string; // The normalized version of the source address
secondary?: string; // Secondary unit
street?: string; // Building, street and directionals
city?: string; // City name
state?: string; // 2-letter state abbreviation
zip?: string; // Zip or postal code
zipExt?: string; // American zip code extension
countryIso2?: string; // 2-letter country abbreviation
}
// if provided, these values will be used authoritatively
interface AddressOptions {
city?: string;
state?: string;
zip?: string;
zipExt?: string;
country?: string;
}
All @zerodep packages support both ESM and CJS formats, each complete with Typescript typings.
// ESM
import { addressZip } from '@zerodep/address-parse';
// CJS
const { addressZip } = require('@zerodep/address-parse');
// COMPLETE ADDRESS
addressParse('apt 12 9655 east river road northeast salem oregon 97303-1234 usa');
// {
// source: 'apt 12 9655 east river road northeast salem oregon 97303-1234 usa',
// normalized: 'APT 12 9655 EAST RIVER RD NE SALEM OREGON 97303-1234 USA',
// secondary: 'APT 12',
// street: '9655 E RIVER RD NE',
// city: 'SALEM',
// stateAbbr: 'OR',
// zip: '97303',
// zipExt: '1234',
// countryIso2: 'US',
// }
// FRACTIONAL ADDRESS
addressParse('3813 1/2 Some Road, Los Angeles, CA');
// {
// source: '3813 1/2 Some Road, Los Angeles, CA',
// normalized: '3813 1/2 SOME ROAD LOS ANGELES CA',
// street: '3813 1/2 SOME RD',
// city: 'LOS ANGELES',
// stateAbbr: 'CA',
// }
// CANADIAN ADDRESS
addressParse('30 nelson street, penthouse, toronto, on m5v0h5');
// {
// source: '30 nelson street, penthouse, toronto, on m5v0h5',
// normalized: '30 NELSON STREET PH TORONTO ON M5V0H5',
// secondary: 'PH',
// street: '30 NELSON ST',
// city: 'TORONTO',
// stateAbbr: 'ON',
// zip: 'M5V 0H5',
// }
// POST OFFICE BOX
addressParse('post office box 3094 collierville tn 38027');
// {
// source: 'post office box 3094 collierville tn 38027',
// normalized: 'PO BOX 3094 COLLIERVILLE TN 38027',
// street: 'PO BOX 3094',
// city: 'COLLIERVILLE',
// stateAbbr: 'TN',
// zip: '38027',
// }
// GENERAL DELIVERY
addressParse('gen del tampa fl 33602-9999');
// {
// source: 'gen del tampa fl 33602-9999',
// normalized: 'GENERAL DELIVERY TAMPA FL 33602-9999',
// street: 'GENERAL DELIVERY',
// city: 'TAMPA',
// stateAbbr: 'FL',
// zip: '33602',
// zipExt: '9999',
// }
// HIGHWAY CONTRACT
addressParse('highway contract route 68 box 23a', { city: 'vale', state: 'co' });
// {
// source: 'highway contract route 68 box 23a',
// normalized: 'HC 68 BOX 23A',
// city: 'VALE',
// stateAbbr: 'CO',
// street: 'HC',
// }
FAQs
An address parser for American and Canadian addresses that breaks down the provided address into its component parts
We found that @zerodep/address-parse demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.