
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.
Tiny, zero-dependency, and extensible string masking library.
To make things simple, Maskito only has 2 built-in masking patterns - 0 and A:
0 will match any digitA will match any English letterTo format a string using Maskito, use the createMask function:
import { createMask } from 'maskito';
const { format } = createMask('AAA (000)-000-000');
console.log(format('USA123456789')); // 'USA (123)-456-789'
You can also create your own mask patterns by passing a dictionary to the createMask function.
For example, let's create a mask pattern D that will match the dollar sign:
import { createMask } from 'maskito';
const { format } = createMask('D00.0', {
D: /^\$$/,
});
console.log(format('$123')); // '$12.3'
In addition, you can revert a masked string back to its original form using the unformat function:
import { createMask } from 'maskito';
const { unformat } = createMask('AAA (000)-000-000');
console.log(unformat('USA (123)-456-789')); // 'USA123456789'
For convenience, Maskito also exposes the mask string you passed in under the mask property:
import { createMask } from 'maskito';
const { mask } = createMask('AAA (000)-000-000');
console.log(mask); // 'AAA (000)-000-000'
Here's an example of how you can use Maskito with React:
import { useState } from 'react';
import { createMask } from 'maskito';
const { format, unformat, mask } = createMask('(000) 000-0000');
const App = () => {
const [value, setValue] = useState('');
const onChange = (e: React.ChangeEvent<HTMLInputElement>) => {
setValue(unformat(e.target.value));
};
return (
<input
placeholder={mask}
value={format(value)}
onChange={onChange}
/>
);
};
We initialize a mask outside of React's context using the createMask function. Then, inside React,
we render a controlled input that shows the formatted value using the format function. Each time
the user changes the input value, we unformat it and set it as the new state's value, resulting in
a formatted input for the user, but an unformatted value for the application.
FAQs
Tiny, zero-dependency, and extensible string masking library
The npm package maskito receives a total of 744 weekly downloads. As such, maskito popularity was classified as not popular.
We found that maskito demonstrated a not healthy version release cadence and project activity because the last version was released 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.

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.