
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.
prosemirror-replaceattrs
Advanced tools
The missing ReplaceAttrsStep for prosemirror
import 'prosemirror-replaceattrs' /// somewhere in your project
tr.replaceAttrs(pos, attrs)
In prosemirror, in order to update attributes of a node, you must delete it and replace with a new node with updated attributes. Something like this:
state.tr.setNodeMarkup(state.selection.from, undefined, attrs)
/// or
newNode = node.copy()
newNode.attrs = attrs
state.tr.replaceWith(pos, pos + 1, newNode)
While this works perfectly, during collaboration it does not go well with undo history. Suppose user A inserts an image node and user B updates alt attribute of that image node. When user A hits undo, it should remove the inserted image, but it will not if you've replaced the entire node. This ReplaceAttrsStep
solves that problem if you use it to update attributes of a node.
FAQs
The missing ReplaceAttrsStep for prosemirror
The npm package prosemirror-replaceattrs receives a total of 4,593 weekly downloads. As such, prosemirror-replaceattrs popularity was classified as popular.
We found that prosemirror-replaceattrs 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.