
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.
regex-stringify
Advanced tools
Stringify a Regex object or string into a JSON compatible string.
Needs Node.js ≥ 4.0.0
npm install regex-stringify --save
const rs = require('regex-stringify')
const reg = /"([^"]|\\")*"/
const regStr = '"([^"]|\\\\")*"'
console.log(rs(reg)) // '"\\"([^\\"]|\\\\\\\\\\")*\\""'
console.log(rs(regStr)) // '"\\"([^\\"]|\\\\\\\\\\")*\\""'
const regStringify = rs(reg)
console.log(reg.source === new RegExp(JSON.parse(regStringify)).source) // true
If you feel you can help in any way, be it with examples, extra testing, or new features please open a pull request or open an issue.
The code follows the Standard code style.
The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and non infringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.
Copyright © 2016 Tomas Della Vedova
FAQs
Stringify regex object and string
We found that regex-stringify 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.