
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.
dom-string-wrapper
Advanced tools
Utilitary functions to manipulate a DOM Node's textContent without damaging (reseting) its existing child nodes.
npm install --save dom-string-wrapper
The package provides 2 functions: wrapText
and wrapTextAll
, the first one returns a Range
, the second one returns an array of Range
s. They allow you to create a range that will wrap a part of a node's textContent.
/* For instance, let's take the following node */
var pNode = document.createElement('p');
var pNode.innerHTML = '<span>Well, <strong>Hello</strong> world :)</span>';
/* and add an event listener to the span child. */
pNode.querySelector('strong').addEventListener('hover', doSomethingImportant);
/* let's now say that we wish to wrap Hello World in a Anchor node, we could do the following: */
var pNode.innerHTML = '<span>Well, <a href="..."><strong>Hello</strong> world</a> :)</span>';
/* But that would reset the whole content and we would lose the event listener we added on <strong>.
* That's where this module comes in. You can achieve the same goal without resetting anything. */
var wrapText = require('dom-string-wrapper').wrapText;
// returns a range wrapping '<strong>Hello</strong> world'
var range = wrapText(pNode, 'Hello world');
/* You can then use the native range methods to manipulate the content. In this case, we need surroundContents. */
var aNode = document.createElement('a');
aNode.href = '...';
range.surroundContents(aNode);
FAQs
Creates a Range that wraps a specified string
The npm package dom-string-wrapper receives a total of 0 weekly downloads. As such, dom-string-wrapper popularity was classified as not popular.
We found that dom-string-wrapper 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.
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.