npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@shopify/worldwide

v0.7.2

Published

Utilities for parsing and formatting address fields

Downloads

11,339

Readme

Worldwide - Typescript

Utilities for parsing and formatting address fields

Usage

Generating a concatenated address string

To generate a concatenated string for a specific address field, pass an address object with the country code and extended fields as defined in the region yaml.

For example, the Brazil yaml defines the format as follows:

# db/data/region/BR.yml
combined_address_format:
  address1:
    - key: streetName
    - key: streetNumber
      decorator: ", "
  address2:
    - key: line2
    - key: neighborhood
      decorator: ", "

To generate a correctly formatted address1 string for Brazil, include streetName and streetNumber in the address object.

concatenateAddress1({
  countryCode: 'BR',
  streetName: 'Av. Paulista',
  streetNumber: '1578',
}); // returns 'Av. Paulista, \u20601578'

You can generate Address1 or Address2 fields for any supported country, even if there is not a combined_address_format for that region. In those cases we return an unmodified address1.

import {concatenateAddress1, concatenateAddress2} from '@shopify/worldwide';

// Generate Address1
concatenateAddress1({
  countryCode: 'BR',
  streetName: 'Av. Paulista',
  streetNumber: '1578',
}); // returns 'Av. Paulista, \u20601578'
concatenateAddress1({
  countryCode: 'US',
  address1: '123 Main',
}); // returns '123 Main'

// Generate Address2
concatenateAddress2({
  countryCode: 'BR',
  line2: 'dpto 4',
  neighborhood: 'Centro',
}); // returns 'dpto 4, \u2060Centro'
concatenateAddress2({
  countryCode: 'US',
  address2: 'Apt 2',
}); // returns 'Apt 2'

Parsing a concatentated address string

To parse a concatenated address string use the split functions which return a partial Address object including any address fields we are able to match given the region specified.

Using our Brazil example, we can pass the concatenated string into our split function for address1:

splitAddress1('BR', 'Av. Paulista, \u20601578'); // returns { streetName: 'Av. Paulista', streetNumber: '1578' }

Trying to parse an address string for a region that doesn't have a defined combined_address_format will return null.

import {splitAddress1, splitAddress2} from '@shopify/worldwide';

// Parse Address1
splitAddress1('BR', 'Av. Paulista, \u20601578'); // returns { streetName: 'Av. Paulista', streetNumber: '1578' }
splitAddress1('US', '123 Main'); // returns null

// Parse Address2
splitAddress2('BR', 'dpto 4, \u2060Centro'); // returns { line2: 'dpto 4', neighborhood: 'Centro', }
splitAddress2('US', 'Apt 2'); // returns null

Contributing & Development

Setup

You'll need node and pnpm installed. We use pnpm for dependency management. First make sure both are installed.

node -v # ex: v20.13.1, Should be version 20 (or highter LTS)
pnpm -v # ex: 9.1.3, Should be version 9

Change directories to lang/typescript, you'll need to run all pnpm commands from that directory.

cd lang/typescript

To install dependencies run:

pnpm install

Build

To run a build run:

pnpm build

This will use Rollup to generate dist/, which is our bundled JS package.

Verify the npm package is bundled correctly with publint or are the types wrong. This should only need to be done when changing rollup.config.ts to modify the bundle output:

pnpm package:publint
pnpm package:attw

Other commands

# Run code linter (w/ eslint)
pnpm lint
# Run code formatting (w/ prettier)
pnpm format
# Run typechecker (w/ typescript/tsc)
pnpm typecheck
# Run test suite (w/ vitest)
pnpm test
# Run test watcher (w/ vitest)
pnpm test:watch

Adding a changelog

Make sure to add a changelog entry with a clear message and semver-compatible version type (patch, minor, major). To do this, run the following command:

pnpm changeset

This will create a new changeset file using the changesets tool. The auto-generated file has a random filename to avoid conflicts and can be renamed to be more relevant to match the change.

See changeset's docs for more info.

Releasing a new version

Changesets will handle combining unreleased changesets on the main branch into a new version following semver in a GH Action workflow into a corresponding PR. Merging that PR into main will release the new version to NPM.

See #244 for an example.