
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
lodash.escaperegexp
Advanced tools
The lodash.escaperegexp package is a utility function from the Lodash library that escapes the special characters in a string to be used in a regular expression. This is particularly useful when you need to create a regular expression from user input or other dynamic sources.
Escape special characters in a string
This feature allows you to escape special characters in a string so that it can be safely used in a regular expression. In the example, the string '[lodash](https://lodash.com/)' is escaped to '\[lodash\]\(https://lodash\.com/\)'.
const escapeRegExp = require('lodash.escaperegexp');
const escapedString = escapeRegExp('[lodash](https://lodash.com/)');
console.log(escapedString); // Output: \[lodash\]\(https://lodash\.com/\)The escape-string-regexp package provides similar functionality to lodash.escaperegexp by escaping special characters in a string to be used in a regular expression. It is a lightweight alternative and focuses solely on this specific task.
The xregexp package offers a more comprehensive set of tools for working with regular expressions, including escaping special characters. It provides additional features like named capture groups, Unicode support, and more, making it a more powerful but also more complex alternative to lodash.escaperegexp.
The lodash method _.escapeRegExp exported as a Node.js module.
Using npm:
$ {sudo -H} npm i -g npm
$ npm i --save lodash.escaperegexp
In Node.js:
var escapeRegExp = require('lodash.escaperegexp');
See the documentation or package source for more details.
FAQs
The lodash method `_.escapeRegExp` exported as a module.
The npm package lodash.escaperegexp receives a total of 4,605,397 weekly downloads. As such, lodash.escaperegexp popularity was classified as popular.
We found that lodash.escaperegexp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.

Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.

Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.

Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.