
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Teleformat is a lightweight library for formatting phone numbers into a good looking user friendly format. It takes any input which represents a phone number and returns deocrated local and international versions of the number as well as the E.164.
If you are receiving input from users teleformat-input provides functionality to format a phone number as the user types.
Install using yarn
yarn add teleformat
or npm
npm install teleformat --save
Call decorate on any phone number to get local, internation and E.164 versions of the number.
import teleformat from 'teleformat'
teleformat.decorate('+447777888888');
This returns an object of the form:
{
international: '+44 (0) 7777 888888',
local: '07777 888888',
e164: '447777888888',
dialingCode: '44',
countryCode: 'GB'
}
FAQs
Javascript library for formatting and validating phone numbers
We found that teleformat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.