Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
react-props-stream
Advanced tools
Utility belt for RxJS streams and React
withPropsStream
HOCwithPropsStream(
ownerPropsToChildProps: Observable<object> | (props$: Observable<object>) => Observable<object>,
BaseComponent: ReactElementType
): ReactComponent
Similar to recompose/mapPropsStream
import {withPropsStream} from 'react-props-stream'
import {timer} from 'rxjs'
import {map} from 'rxjs/operators'
const numbers$ = timer(0, 1000).pipe(map(n => ({number: n})))
const MyStreamingComponent = withPropsStream(
numbers$,
props => <div>The number is {props.number}</div>
)
props.url
when its value changeimport {createEventHandler} from 'react-props-stream'
import {map, distinctUntilChanged, switchMap} from 'rxjs/operators'
const FetchComponent = withPropsStream(
props$ =>
props$.pipe(
map(props => props.url),
distinctUntilChanged(),
switchMap(url => fetch(url).then(response => response.text())),
map(responseText => ({responseText}))
),
props => <div>The result was: {props.responseText}</div>
)
// Usage
ReactDOM.render(<FetchComponent url="http://example.com" />, document.getElementById('myid'))
streamingComponent
Similar to recompose/componentFromStream
import {streamingComponent} from 'react-props-stream'
import {map, distinctUntilChanged, switchMap} from 'rxjs/operators'
const FetchComponent = streamingComponent<{url: string}>(props$ =>
props$.pipe(
map(props => props.url),
distinctUntilChanged(),
switchMap(url => fetch(url).then(response => response.text())),
map(responseText => <div>The result was: {responseText}</div>)
)
)
WithObservable
React componentimport {WithObservable} from 'react-props-stream'
import {timer} from 'rxjs'
import {map} from 'rxjs/operators'
const numbers$ = timer(0, 1000).pipe(map(n => ({number: n})))
function MyComponent(props) {
return (
<WithObservable observable={numbers$}>
{num => <div>The number is {num}</div>}
</WithObservable>
)
}
See more examples here: https://github.com/sanity-io/react-props-stream/tree/master/examples
This is heavily inspired by recompose
FAQs
Utility belt for RxJS streams and React
The npm package react-props-stream receives a total of 5,061 weekly downloads. As such, react-props-stream popularity was classified as popular.
We found that react-props-stream 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.