
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.
replace-once
Advanced tools
Make multiple replacements in a string without replacing ones that have already been replaced.
Make multiple replacements in a string without replacing ones that have already been replaced.
npm install --save replace-once
const replaceOnce = require('replace-once')
var str = 'abc abcd a ab'
var find = ['abcd', 'abc', 'ab', 'a']
var replace = ['a', 'ab', 'abc', 'abcd']
replaceOnce(str, find, replace, 'gi')
//=> 'ab a abcd abc'
The string to do replacements on.
An array of strings to search for when doing replacements. Must be in the same order as their replacement specified inside of the replace parameter. Strings may contain Regular Expressions (regexp).
An array of strings to replace the strings specified inside of the find parameter with. Must be in the same order as their counterpart specified inside of the find parameter.
Optional
RegExp flags to use when doing replacements. (e.g g for global, i for case-insensitive)
MIT. See the license.md file for more info.
FAQs
Make multiple replacements in a string without replacing ones that have already been replaced.
We found that replace-once 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.