
Research
Security News
Malicious PyPI Package Exploits Deezer API for Coordinated Music Piracy
Socket researchers uncovered a malicious PyPI package exploiting Deezer’s API to enable coordinated music piracy through API abuse and C2 server control.
react-reactive-class
Advanced tools
With React Reactive Class, you can create Reactive Components, which subscribe Rx.Observables and re-render themselves.
Reactive DOM elements: A set of reactive DOM elements (button, div, span, etc).
Reactive wrapper: A higher order component to wrap your existing component to be a Reactive Component.
npm install --save react-reactive-class
import React from 'react';
import Rx from 'rx';
import {dom} from 'react-reactive-class';
const { div:Div, span:Span } = dom;
window.style$ = new Rx.Subject();
window.text$ = new Rx.Subject();
class App extends React.Component {
render() {
console.log('App rendered.');
return (
<div>
<h1>Demo</h1>
<Div style={window.style$}>Hello</Div>
<Span>{window.text$}</Span>
</div>
);
}
}
React.render(<App />, document.getElementById('app'));
// notice that App will not re-render, nice!
window.style$.onNext({color: 'blue'});
window.text$.onNext('Reactive!');
// you can open your console and play around
import {reactive} from 'react-reactive-class';
class Text extends React.Component {
render() {
console.log('Text rendered.');
return (
<div>{this.props.children}</div>
);
}
}
const XText = reactive(Text);
import {reactive} from 'react-reactive-class';
@reactive
class XText extends React.Component {
render() {
console.log('Text rendered.');
return (
<div>{this.props.children}</div>
);
}
}
Reactively compose components!
// Unmount this component if length of incoming text is 0.
<Span mount={ text$.map(text => text.length) }>
{text$}
</Span>
Source must be the only child when using observable as child component.
// This will not work
<Span>
Hello {name$}, how are you?
</Span>
// This will work
<span>
Hello <Span>{name$}</Span>, how are you?
</span>
Feel free to ask questions or submit pull requests!
The MIT License (MIT)
FAQs
create reactive react classes
The npm package react-reactive-class receives a total of 1 weekly downloads. As such, react-reactive-class popularity was classified as not popular.
We found that react-reactive-class 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
Security News
Socket researchers uncovered a malicious PyPI package exploiting Deezer’s API to enable coordinated music piracy through API abuse and C2 server control.
Research
The Socket Research Team discovered a malicious npm package, '@ton-wallet/create', stealing cryptocurrency wallet keys from developers and users in the TON ecosystem.
Security News
Newly introduced telemetry in devenv 1.4 sparked a backlash over privacy concerns, leading to the removal of its AI-powered feature after strong community pushback.