• Stars
    star
    632
  • Rank 71,124 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 9 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Google's libphonenumber pre-compiled with the closure compiler

npm version downloads build status minzipped size Dependency count

Awesome phonenumber parser

This library is a pre-compiled version of Google's libphonenumber, with a slightly simpler interface. It has a minimal footprint - is by far the smallest libphonenumber-based library available on npmjs, and has no dependencies.

TypeScript typings are provided within the package.

Uses libphonenumber v8.13.15

Versions

  • v3:
    • Changed API (although with backwards compatible ABI)
    • Added ESM export
  • v4:
    • Changed API to be much cleaner
      • No constructor
      • No functions on returned object
      • No errors being thrown
    • Not backwards compatible, although like v3 except:
      • The second argument to parsePhoneNumber is an object
        • E.g. { regionCode: 'SE' } instead of a region code string
      • The return value is like toJSON( ) on v3
  • v5:
    • Dropped Node 12 support

Comparison with other libraries

Since this library is pre-compiled, it doesn't depend on the closure compiler, and needs not load it on start. This makes the library faster and saves you a lot of space. It also means this library is trivial to use in any webpack project (or using any other means to run in the browser).

Among all the popular phone number using Google's libphonenumber (or mimicing it), only this one, google-libphonenumber and libphonenumber-js have decent README's with examples. This may have changed since first doing these benchmarks.

A library should be quick to load (require()), quick to parse first time and all consecutive times. It shouldn't bloat your node_modules, and it should have a small memory footprint, if possible.

The following is the result of a test program which loads the library, then parses a phone number, and then once again. It's called 100 times for each library and the mean values are shown here. Parsing a phone number first time might be slower because of initially compiling/optimizing regular expressions and whatnot. Parsing a phone number a second time will show the speed of likely all future parsing within that process.

Action awesome-phonenumber
2.56.0
(lib 8.12.29)
google-libphonenumber
3.2.22
(lib 8.12.27)
libphonenumber-js
1.9.23
(lib -)
Load library first time 11.0 ms βœ… 29.67 ms 32.87 ms
Parse first phone number 4.3 ms 4.01 ms 3.43 ms βœ…
β‡’ Load + parse first number 15.3 ms βœ… 33.68 ms 36.3 ms
Parse second phone number 0.78 ms βœ… 0.97 ms 0.92 ms
Increased memory usage 5.12 M βœ… 9.99 M 5.86 M
node_modules size 296 K βœ… 600 K 7.6 M
node_modules files 8 7 βœ… 653

Basic usage

import { parsePhoneNumber } from 'awesome-phonenumber'

const pn = parsePhoneNumber( '0707123456', { regionCode: 'SE' } );
// or on e164 format:
const pn = parsePhoneNumber( '+46707123456' );

// pn is now the same as:
const pn = {
	valid: true,

	number: {
		input: '0707123456',
		e164: '+46707123456',
		international: '+46 70 712 34 56',
		national: '070-712 34 56',
		rfc3966: 'tel:+46-70-712-34-56',
		significant: '707123456',
	},
	possibility: 'is-possible',
	regionCode: 'SE',
	possible: true,
	canBeInternationallyDialled: true,
	type: 'mobile',
	countryCode: 46,
	typeIsMobile: true,
	typeIsFixedLine: false,
};

The return type is ParsedPhoneNumber which is either a ParsedPhoneNumberValid or a ParsedPhoneNumberInvalid. The valid property identifies whether the parsing was successful or not, hence which type is returned.

The format of a successful parsing is:

interface ParsedPhoneNumberValid {
	valid: true;

	number: {
		input: string;
		international: string;
		national: string;
		e164: string;
		rfc3966: string;
		significant: string;
	};
	possibility: PhoneNumberPossibility; // a string union, see below
	regionCode: string;
	possible: boolean;
	canBeInternationallyDialled: boolean;
	type: PhoneNumberTypes; // a string union, see below
	countryCode: number;
	typeIsMobile: boolean;
	typeIsFixedLine: boolean;
}

If the number failed to be parsed, or there was another error, the return type is:

interface ParsedPhoneNumberInvalid {
	valid: false;

	possible: false;
	possibility: 'invalid';
	error?: unknown;
};

API

import {
	parsePhoneNumber,
	getNumberFrom,
	getExample,
	getCountryCodeForRegionCode,
	getRegionCodeForCountryCode,
	getSupportedCallingCodes,
	getSupportedRegionCodes,
	getAsYouType,
} from 'awesome-phonenumber'

parsePhoneNumber

parsePhoneNumber( phoneNumber, { regionCode: string } ) parses a phone number as described above.

The first argument is the phone number to parse, on either national or international (e164, i.e. prefixed with a +) form. If national form, the second argument is required to contain a regionCode string property, e.g. 'SE' for Sweden, 'CH' for Switzerland, etc.

getNumberFrom

import { parsePhoneNumber, getNumberFrom } from 'awesome-phonenumber'

const pn = parsePhoneNumber( '0707654321', { regionCode: 'SE' } );
if ( pn.valid ) {
	const fromJp = getNumberFrom( pn, 'JP' );
	// fromJp is the number to call from Japan:
	fromJp.number === "010 46 70 765 43 21";
}

The return value from getNumberFrom is a PhoneNumberFrom which is either a PhoneNumberFromValid or a PhoneNumberFromInvalid.

The PhoneNumberFromValid is defined as:

interface PhoneNumberFromValid
{
	valid: true;
	number: string;
}

The PhoneNumberFromInvalid is defined as:

interface PhoneNumberFromInvalid
{
	valid: false;
	error?: unknown;
}

getExample

Sometimes you want to display a formatted example phone number for a certain country (and maybe also a certain type of phone number). The getExample function is used for this.

import { getExample } from 'awesome-phonenumber'

getExample( regionCode[, phoneNumberType] ); // Parsed phone number

The phoneNumberType is any of the types defined above.

Example

import { getExample } from 'awesome-phonenumber'

// Get an example Swedish phone number
const example = getExample( 'SE' ); // A ParsedPhoneNumberValid
const exampleMobile = getExample( 'SE', 'mobile' ); // A ParsedPhoneNumberValid

example.number.e164;           // e.g. '+468123456'
exampleMobile.number.e164;     // e.g. '+46701234567'
exampleMobile.number.national; // e.g. '070 123 45 67'

Country codes

There are conversion functions between the 2-character ISO 3166-1 region codes (e.g. 'SE' for Sweden) and the corresponding country calling codes.

import {
	getCountryCodeForRegionCode,
	getRegionCodeForCountryCode,
	getSupportedCallingCodes,
	getSupportedRegionCodes,
} from 'awesome-phonenumber'

getCountryCodeForRegionCode( regionCode );  // -> countryCode
getRegionCodeForCountryCode( countryCode ); // -> regionCode

Example

getCountryCodeForRegionCode( 'SE' ); // -> 46
getRegionCodeForCountryCode( 46 );   // -> 'SE'

Supported calling codes

getSupportedCallingCodes( ); // -> [ calling codes... ]

Supported region codes

getSupportedRegionCodes( ); // -> [ region codes... ]

API types

The API consists of the PhoneNumber class which sometimes uses enums. These are:

Phone number types

type PhoneNumberTypes =
	| 'fixed-line'
	| 'fixed-line-or-mobile'
	| 'mobile'
	| 'pager'
	| 'personal-number'
	| 'premium-rate'
	| 'shared-cost'
	| 'toll-free'
	| 'uan'
	| 'voip'
	| 'unknown'

Phone number possibilities

type PhoneNumberPossibility =
	| 'is-possible'
	| 'invalid-country-code'
	| 'too-long'
	| 'too-short'
	| 'unknown'

Phone number formats

'international'
'national'
'e164'
'rfc3966'
'significant'

As-you-type formatting

You can create an AsYouType class with getAsYouType() to format a phone number as it is being typed.

import { getAsYouType } from 'awesome-phonenumber'

const ayt = getAsYouType( 'SE' );

The returned class instance has the following methods

// Add a character to the end of the number
ayt.addChar( nextChar: string );

// Get the current formatted number
ayt.number( );

// Remove the last character
ayt.removeChar( );

// Replace the whole number with a new number (or an empty number if undefined)
ayt.reset( number?: string );

// Get a ParsedPhoneNumber object representing the current number
ayt.getPhoneNumber( );

All the functions above except getPhoneNumber( ) return the current formatted number as a string.

Example

import { getAsYouType } from 'awesome-phonenumber'

const ayt = getAsYouType( 'SE' );
ayt.addChar( '0' ); // -> '0'
ayt.addChar( '7' ); // -> '07'
ayt.addChar( '0' ); // -> '070'
ayt.addChar( '7' ); // -> '070 7'
ayt.addChar( '1' ); // -> '070 71'
ayt.addChar( '2' ); // -> '070 712'
ayt.addChar( '3' ); // -> '070 712 3'
ayt.addChar( '4' ); // -> '070 712 34'
ayt.addChar( '5' ); // -> '070 712 34 5'
ayt.addChar( '6' ); // -> '070 712 34 56'
ayt.removeChar( );  // -> '070 712 34 5'
ayt.addChar( '7' ); // -> '070 712 34 57'

More Repositories

1

suretype

Typesafe JSON (Schema) validator
TypeScript
487
star
2

typeconv

Convert between JSON Schema, TypeScript, GraphQL, Open API and SureType
TypeScript
389
star
3

fetch-h2

HTTP/1+2 Fetch API client for Node.js
TypeScript
334
star
4

q

A platform-independent promise library for C++, implementing asynchronous continuations.
C++
191
star
5

u2f-api

U2F API for browsers
JavaScript
86
star
6

ts-to-openapi

Convert TypeScript types to OpenAPI schema components
TypeScript
55
star
7

meta-types

TypeScript meta functions for (especially variadic) meta programming
TypeScript
31
star
8

trace-unhandled

Much better tracing of unhandled promise rejections in JavaScript
JavaScript
28
star
9

awesome-ajv-errors

Prettified AJV errors
TypeScript
24
star
10

already

Utility functions for promises; finally, map, filter, etc
TypeScript
21
star
11

yaml-diff-patch

Apply a JSON diff/patch to YAML while preserving whitespace, comments and overall structure
TypeScript
19
star
12

core-types

Generic type declarations for e.g. TypeScript and JSON Schema
TypeScript
16
star
13

stream-mime-type

Get the mime type of a stream
TypeScript
10
star
14

graph-cycles

Analyze a graph to find cyclic loops
TypeScript
9
star
15

openapi-json-schema

Minimalistic OpenAPI 3 ⬌ JSON Schema conversion
TypeScript
9
star
16

core-types-ts

core-types ⬌ TypeScript interface conversion
TypeScript
8
star
17

jsonpos

Get the textual position to a property in a JSON text
TypeScript
7
star
18

haxec

Wrap a Node.js spawn() or exec() with before/after handlers
TypeScript
6
star
19

react-tree-reconciler

Simpler API for React reconcilers
TypeScript
6
star
20

oppa

😌 Super easy typesafe options parser for Node.js
TypeScript
5
star
21

json-schema-cycles

Analyize recursive (cyclic) JSON Schema types
TypeScript
4
star
22

compd

Run a command under a docker-compose setup
TypeScript
4
star
23

react-ancestry

Get the component ancestry in React
TypeScript
4
star
24

edit-json

Edit JSON text in-place for a minimal diff
TypeScript
4
star
25

core-types-json-schema

core-types ⬌ JSON Schema conversion
TypeScript
4
star
26

list-open-files

lsof for Node.js
TypeScript
3
star
27

stream-head

Peek the first couple of bytes from a stream
TypeScript
3
star
28

next-chunk

Asynchronously returns the next chunk in a Node.js readable stream
TypeScript
3
star
29

use-reusable-state

Deep-equal caching version of React useState
TypeScript
2
star
30

json-cst

Parse JSON into CST (Concrete Syntax Tree)
TypeScript
2
star
31

fast-string-compare

A (much) faster String.prototype.localeCompare
TypeScript
2
star
32

fetch-h2-br

πŸ₯ Brotli decoder to fetch-h2-br
TypeScript
2
star
33

core-types-suretype

core-types ⬌ SureType validator conversion
TypeScript
2
star
34

json-schema-some

Array.prototype.some for JSON Schema
TypeScript
2
star
35

instead

In-place merge-and-replace
TypeScript
1
star
36

binmap

Ordered Map (ES Map compatible)
TypeScript
1
star
37

libcors

Javascript CORS handling, 100% transportation agnostic
TypeScript
1
star
38

react-vscode

React for VSCode
TypeScript
1
star