
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.
const formatter = new Formatter('dollar');
const value = formatter.validate('1000000.50');
// value = '$1,000,000.50'
Formatte is a value formater for JavaScript. It uses rule sets built from utility functions like removeLeadingZeros to produce formated data.
This is a JavaScript module available through the npm registry.
Before installing, download and install Node.JS.
Installation is done using the npm install command:
npm install formatte
The original creator of Formatte is Morgan Brown;
const formated = new Formater('dollar').validate('001234.1234);
'$1,234.12'
Formatte can be used with both NodeJS and Javascript. Formatte Utilizes the ES6 Class Syntax.
const formated = new Formater('year').validate('00a2014.1');
'2014'
const formated = new Formater('dollar').validate('001234.1234');
'$1,234.12'
const formated = new Formater('percent').validate('001234.1234');
'1,234.12%'
const formated = new Formater('longPercent').validate('001234.1234');
'1,234.1234%'
const formated = new Formater('integer').validate('hello123402');
'123402'
FAQs
Formatte is a value formater for JavaScript.
We found that formatte 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.