![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
rxjs-min-max
Advanced tools
RxJs Operators for emits minimum/maximum value on each iteration.
import { maxStream, minStream } from 'rxjs-min-max'
of(1, 1, 2, 2, 2, 0, 1, 2, 3, -1, 4).pipe(
maxStream(),
)
.subscribe(x => console.log(x)); // 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 4
of<Person>(
{ age: 4, name: 'Foo'},
{ age: 7, name: 'Bar'},
{ age: 3, name: 'Foo'},
{ age: 6, name: 'Foo'},
).pipe(
minStream((p: Person, q: Person) => p.age > q.age),
)
.subscribe(x => console.log(x));
// displays:
// { age: 4, name: 'Foo' }
// { age: 4, name: 'Foo' }
// { age: 3, name: 'Foo'},
// { age: 3, name: 'Foo'},
You can used this operators like min/max:
.pipe(
minStream(), // maxStream
last()
) => min() / max()
If size of stream big(n > 10000), minStream(maxStream) work faster than min(max):
var rxjsMinMax = require('./dist/index.js');
var rxjs = require('rxjs');
var last = require('rxjs/operators').last;
var min = require('rxjs/operators').min;
const n = 100000;
const array = Array.from({ length: n }, () => Math.floor(Math.random() * n));
console.time('minStream');
rxjs.from(array).pipe(rxjsMinMax.minStream(), last()).subscribe((x) => console.log(x));
console.timeEnd('minStream');
console.time('min');
rxjs.from(array).pipe(min()).subscribe((x) => console.log(x));
console.timeEnd('min');
// 0
// minStream: 11.276ms
// 0
// min: 40.306ms
FAQs
RxJs Operators for emits minimum/maximum value on each iteration.
The npm package rxjs-min-max receives a total of 7 weekly downloads. As such, rxjs-min-max popularity was classified as not popular.
We found that rxjs-min-max 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.