Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@reonomy/reactive-hooks
Advanced tools
$ yarn add @reonomy/reactive-hooks
Reactive Hooks is a library for rendering RxJS Observables using React Hooks.
Returns a current value and a function to update it.
[foo, setFoo] = useRxState(foo$);
Example:
import React from 'react';
import { useRxState } from '@reonomy/reactive-hooks';
import { Observable } from 'rxjs';
interface IFoo {
foo$: Observable<string>;
}
function Foo({ foo$ }: IFoo) {
const [foo, setFoo] = useRxState(foo$);
return (
<button onClick={() => setFoo('bar')}>
{foo}
</button>
);
}
During the initial render, the returned state foo
is the same as the current value passed as the first argument foo$
.
The button click handler will update foo$
and set this state to bar
.
Returns a current state of a given observable.
foo = useRxStateResult(foo$);
Example:
import React from 'react';
import { useRxState } from '@reonomy/reactive-hooks';
import { Observable } from 'rxjs';
interface IFoo {
foo$: Observable<string>;
}
function FooReader({ foo$ }: IFoo) {
const foo = useRxStateResult(foo$);
return (
<p>
{foo}
</p>
);
}
Invokes a callback function when a given observable emits a new state.
useRxEffect(foo$, didUpdate);
Example:
import React from 'react';
import { useRxState } from '@reonomy/reactive-hooks';
import { Observable } from 'rxjs';
interface IFoo {
foo$: Observable<string>;
}
function FooReader({ foo$ }: IFoo) {
useRxEffect(foo$, (foo) => {
console.log('new foo is ', foo);
});
return <p>Foo<p>;
}
Returns an ajax response and a function to submit a request. In addition it invokes a callback function on state updates (e.g. when status is changed from pending
to succeeded
/failed
).
[response, submitRequest] = useRxAjax(ajaxFoo, didUpdate);
The callback function is useful when a side effect should be invoked.
Invokes a callback function with a given debounce timeout when a given observable emites a new state.
[response, submitRequest] = useRxDebounce(useRxDebounce, didUpdate, timeout);
Invokes a callback function when a component is mounted and rendered for the very first time.
useMountEffect(didMount);
MIT
FAQs
RxJS React Hooks Library
We found that @reonomy/reactive-hooks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.