![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.
iteragain
Advanced tools
Another Javascript library for iterating.
Pure JavaScript, ES6 Iterable/Iterator utilities. No dependencies and shipped with types as is.
Inspired by iterplus, iterare and the Python itertools module. See benchmark section for performance.
The package is designed around the use of the ExtendedIterator
class. It's a class that extends the ES6 Iterator with methods like those in Array
and other iterator methods in python. It's chainable and looks closely like normal Javascript code instead of the more Python itertools
way of doing things:
filter(lambda x: x % 2 == 0, map(lambda x: x * x, iterable))
There is also other utility functions like range
, enumerate
, etc.
// Import from the root index
import { iter } from 'iteragain';
// Or from the file itself (tree shakable):
import iter from 'iteragain/iter';
const nums = iter([1, 2, 3])
.map(n => n ** n)
.filter(n => n % 2 === 0)
.toArray();
// [1, 4, 9]
Starting benchmark suite: index.bm.ts
for of loop 10000 x 1,198 ops/sec, ±35 ops/sec or ±2.94% (88 runs sampled)
iteragain 10000 x 856 ops/sec, ±14 ops/sec or ±1.67% (89 runs sampled)
iterare 10000 x 747 ops/sec, ±13 ops/sec or ±1.77% (92 runs sampled)
iterplus 10000 x 547 ops/sec, ±8 ops/sec or ±1.43% (92 runs sampled)
Fastest is for of loop 10000
FAQs
Javascript Iterable/Iterator/Generator-function utilities.
The npm package iteragain receives a total of 0 weekly downloads. As such, iteragain popularity was classified as not popular.
We found that iteragain demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
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.