
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-svelte-nodeview
Advanced tools
Create a ProseMirror NodeView using Svelte.
A basic heading NodeView (SimpleHeadingView)
<script lang="ts">
export var attrs: { level: number };
export let contentDOM: (node: HTMLElement) => void;
$: tag = `h${attrs.level}`;
</script>
<svelte:element this={tag} use:contentDOM />
Loading the component using the plugin
EditorState.create({
doc,
plugins: [
sveltePlugin({
nodes: {
heading: SimpleHeadingView,
}
})
]
})
These props are passed to the components loaded into this plugin.
type ComponentProps = {
attrs?: Record<string, unknown>;
controls?: SvelteNodeViewControls,
contentDOM?: (node: HTMLElement) => void,
rootDOM?: (node: HTMLElement) => void,
}
export interface SvelteNodeViewControls {
delete: () => void;
update: (cb: (editorState: EditorState, node?: Node, getPos?: () => number) => Transaction) => void;
}
Check out the basic example project for a more complete example component showing the use of a nested editor to edit attributes.
FAQs
Create a ProseMirror NodeView using Svelte.
The npm package prosemirror-svelte-nodeview receives a total of 7 weekly downloads. As such, prosemirror-svelte-nodeview popularity was classified as not popular.
We found that prosemirror-svelte-nodeview 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.