
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
disposable-component
Advanced tools
A simple reactive API for mounting and unmounting components to the DOM
Disposable-component providse a simple reactive API for mounting and unmounting components to the DOM. This is useful for cross framework interop inside your single-page-app.
npm install --save rx disposable-component
A simple example would be to use disposable-component
to build a
react-modal:
import mountComponent from "disposable-component";
import React from "react";
import ReactDOM from "react-dom";
function showModal(El, props) {
return mountComponent(
function mount(onNext, onCompleted, onError) {
el = document.createElement("div");
document.body.appendChild(el);
ReactDOM.render(
<El {...props} close={onCompleted} onNext={onNext} />,
el
);
},
function unmount() {
ReactDOM.unmountComponentAtNode(el);
el.parentNode.removeChild(el);
}
);
}
const subscription = showModal(function MyModal() {
return (
<div>
<h1>My Modal</h1>
<button onClick={this.props.onCompleted}>Close</button>
<button onClick={this.props.onNext.bind(null, 1)}>Save</button>
</div>
);
}).subscribe(
data => console.log(data),
err => console.error(err)
);
subscription.dispose(); // close the modal
FAQs
A simple reactive API for mounting and unmounting components to the DOM
The npm package disposable-component receives a total of 16 weekly downloads. As such, disposable-component popularity was classified as not popular.
We found that disposable-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 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
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.