JavaScript
2 posts

The Trouble with JavaScript Streams: What Web Streams API Got Wrong
Web Streams API locked you out? BYOB mode giving you headaches? Node.js core contributor James Snell proposed an alternative using async iterables, with 2x to 120x performance gains. See how pull vs push models affect your code performance.
February 28, 2026 · 9 min · 1813 words · Mengshou Programming
Stop Using substr(): The Deprecated JavaScript API and the Right Replacements (slice vs substring)
substr() is deprecated and risky to rely on. This guide explains why, contrasts it with slice() and substring(), and provides a clear migration checklist and best practices.
August 10, 2025 · 2 min · 358 words · Rexai Programming