
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.
bound-subject-decorator
Advanced tools
A decorator for reducing boilerplate around using RxJS 5 Subjects in Components (like React or similar)
A decorator for reducing boilerplate around using RxJS 5 Subjects in Components (like React or similar)
npm i -S bound-subject-decorator
By decorating any property that returns a Subject
(or BehaviorSubject
, et al)
with @boundSubject
, it binds the subject instance's next
, error
and complete
methods to the subject instance, so they can be used with less boilerplate in
components. This can be used in any framework or environment that might require
this behavior.
import * as React from 'react';
import * as Rx from 'rxjs';
import { boundSubject } from 'bound-subject-decorator';
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.state = { count: 0 };
}
componentDidMount() {
this.sub = this.clicks
.scan(x => x + 1, 0)
.subscribe(count => this.setState({ count }));
}
componentWillUnmount() {
this.sub.unsubscribe();
}
// convert the `clicks` property to a function-subject!
@boundSubject
clicks = new Rx.Subject();
render() {
// now we can use `{this.clicks.next}` directly as a handler
return (<div>
<button onClick={this.clicks.next}>Click Me</button>
<div>count: {this.state.count}</div>
</div>);
}
}
FAQs
A decorator for reducing boilerplate around using RxJS 5 Subjects in Components (like React or similar)
The npm package bound-subject-decorator receives a total of 1 weekly downloads. As such, bound-subject-decorator popularity was classified as not popular.
We found that bound-subject-decorator 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.