atlas news
  Reddit : JavaScript
11  april     07h00
Showoff Saturday (April 11, 2026)
   Did you find or create something cool this week in javascript? Show us here submitted by u AutoModerator [link] [comments]
13  april     09h06
Your r javascript recap for the week of April 06 - April 12, 2026
   Monday, April 06 - Sunday, April 12, 2026 Top Posts score comments title & link 45 1 comments How attackers are hiding malicious code in build...
    12h42
Electron IPC design feels fundamentally flawed. Am I wrong?
   I've been working with Electron for a while, and one thing that keeps bothering me is how IPC is designed. I mean, it's pretty good if you...
    13h38
The native scrollIntoView( behavior: ’smooth’ ) has no callback. You can’t know when it finishes. This tiny wrapper returns a Promise that resolves when the scroll is done.
   Promise-based await the native smooth scroll, run code when it finishes Zero dependencies pure TypeScript, no external packages Uses the native API...
    13h30
Simple generator for GitHub social preview cards images (1280à 640) from any public repo URL
   GitHub has a feature for social preview images, but most people just ignore it because designing a custom image from scratch takes time. It is...
    06h07
I built a virtual-scroll custom element that behaves like a normal scroll container
   I’ve been working on a virtual-scroll custom element that tries to keep virtualization feeling close to normal HTML and CSS. The main goal was to...
12  april     16h19
terminal-element: Terminal interface as Web Component
   Built a terminal style interface as Web Component. Didn't think about how useful it is that much, but I often see this type of preview here and...
13  april     10h18
I built react-native-ai-hooks - add Claude, OpenAI Gemini to React Native in minutes
   I built a small open-source library that adds AI hooks to React Native apps. useAIChat() multi-turn chat useAIStream() real-time streaming...
    08h57
You can’t cancel a JavaScript promise (except sometimes you can)
   32; submitted by u bogdanelcs [link] [comments]
12  april     05h44
Release Re2js v2 - A pure JS RegExp engine that defeats ReDoS
   I'm excited to share the v2 release of re2js, a pure JavaScript port of the RE2 regular expression engine. JavaScript's native RegExp uses a...
13  april     07h03
AskJS Different Code, Same Function
   Code 1: var count 0; while (count < 5) count console.log("Hello "); Code 2: for (var count 0; count < 5; count ) console.log...
11  april     23h18
I built an open-source WYSIWYG editor in vanilla JavaScript (no frameworks, CDN-ready)
   32; submitted by u neikiri [link] [comments]
    11h23
cargo-npm: Distribute Rust CLIs via npm without postinstall scripts
   I recently built cargo-npm, a tool that packages and distributes Rust binaries directly to the npm registry. Why another distribution tool? While...
    16h15
AskJS A quick breakdown of JS error types that every developer should know
   Been working with JavaScript for a while and noticed most devs only handle generic errors. Here's a quick breakdown of the main error types...
    16h51
How we made the Angular Compiler 10x faster using Rust and AI
   32; submitted by u manniL [link] [comments]
    10h51
We transpiled PHPUnit (54k lines, 412 files) to JavaScript. 61.3% of tests passing
   32; submitted by u Typical Ad 6436 [link] [comments]
    05h09
AskJS Do you believe you’re a better critical thinker than GPT 5.4 Opus 4.6?
   View Poll submitted by u CodalReef [link] [comments]
10  april     12h21
Zero-build privacy policies with Astro
   We've just made it even easier to build privacy policies from code. No Vite plugin required. submitted by u jxd-dev [link] ...
09  april     17h18
styled-components 6.4 now available
   There's a lot of great stuff in this release In no particular order: RSC implementation promoted from experimental More intelligent caching real...
10  april     01h07
ffetch 5.1.0 adds opt-in request and response shortcuts
   Shipped ffetch 5.1.0. ffetch is a lightweight, production-ready HTTP client that wraps native fetch with built-in timeouts, retries with exponential...
09  april     21h58
Bulk mute all Reddit community notifications: browser console script (2026)
   32; submitted by u sheketsilencio [link] [comments]
10  april     17h08
Decorating a Promise with convenience methods without subclassing or changing what await returns
   32; submitted by u OtherwisePush6424 [link] [comments]
    16h46
AskJS Anyone else found Math.random() flagged in a security audit? How did you handle the remediation?
   Security audit came back with a finding on credential generation. Math.random() in several services, flagged for NIST 800-63B non-compliance. The...
09  april     20h57
AskJS Is it just me or is debugging memory leaks in Node V8 way worse than it used to be?
   We recently upgraded our backend (late) from Node 20 to Node 24. About a week later, alarms went off when our app stopped responding; memory usage...
    15h18
Render tsx on an e-ink display
   Hey everyone I wanted to show a small project I've been working on; a tsx framework for rendering to an e-ink display (or tsx > canvas >...