
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
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'))
streamingComponentSimilar 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,652 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.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.