#websocketstream

[ follow ]
React
fromAmazon Web Services
3 days ago

Create minimal reproductions for AWS SDK JavaScript v3 with create-aws-sdk-repro | Amazon Web Services

create-aws-sdk-repro generates ready-to-run AWS SDK for JavaScript v3 projects quickly and efficiently.
Node JS
fromInfoWorld
3 days ago

Is your Node.js project really secure?

Dependency security workflows in JavaScript and Node.js lack actionability, leading to late awareness of risks and ineffective responses.
Web frameworks
fromInfoQ
6 days ago

Building Production-Ready tRPC APIs: The TypeScript Alternative to Apollo Federation

tRPC provides end-to-end type safety, significantly reducing API bugs and improving performance compared to GraphQL Federation.
Vue
fromRaymondcamden
6 days ago

Building a Simple Markdown PWA App

A Markdown viewer app was built using Electron, focusing on simplicity and functionality for viewing Markdown files.
Typography
fromTheregister
1 week ago

QUIC will soon be as important as TCP

QUIC is expected to play a crucial role similar to TCP, necessitating more comprehensive coverage in future editions.
#javascript
Node JS
fromAllthingssmitty
6 days ago

Why I don't chain everything in JavaScript anymore - Matt Smith

Chaining methods in JavaScript can complicate readability and debugging, making step-by-step coding often clearer and easier to manage.
Node JS
fromInfoQ
1 month ago

State of JavaScript 2025: Survey Reveals a Maturing Ecosystem with TypeScript Cementing Dominance

TypeScript continues to dominate the JavaScript ecosystem, with 40% of developers using it exclusively, while Vite surpasses Webpack in satisfaction.
Node JS
fromAllthingssmitty
6 days ago

Why I don't chain everything in JavaScript anymore - Matt Smith

Chaining methods in JavaScript can complicate readability and debugging, making step-by-step coding often clearer and easier to manage.
Node JS
fromInfoQ
1 month ago

State of JavaScript 2025: Survey Reveals a Maturing Ecosystem with TypeScript Cementing Dominance

TypeScript continues to dominate the JavaScript ecosystem, with 40% of developers using it exclusively, while Vite surpasses Webpack in satisfaction.
Web frameworks
fromInfoQ
6 days ago

Pretext.js Bypasses DOM Layout Reflow, Enabling Advanced UX Patterns at 120 FPS

Pretext is a TypeScript library that enhances UI performance by measuring text without causing DOM reflows.
Software development
fromMedium
2 weeks ago

Async Logging Is Not a Silver Bullet - What Actually Limits Performance

Async logging redistributes costs rather than reducing them, impacting performance in different ways depending on implementation.
fromGSMArena.com
3 weeks ago

Google Chrome will get lazy loading for video and audio elements

Lazy loading is a technique that defers loading some of the heavier elements of a page until the lighter ones are loaded, allowing users to start interacting with the content sooner.
Web design
Roam Research
fromGitHub
3 weeks ago

GitHub - emil-celestix/celestix-ifr: Meet IFR: a bio-inspired engine solving RAG's biggest flaws. It achieves true O(1) scaling latency stays <5ms even as data grows 1000x. With +14% accuracy over RAG-rerank, it uncovers multi-hop links standard search misses. Patent-pending tech for enterprise-scale discovery. All benchmark JSONs and test results are now live on GitHub.

Induced-Fit Retrieval (IFR) enhances multi-hop reasoning by dynamically mutating query vectors during information retrieval.
#nodejs
Node JS
fromTreehouse Blog
2 weeks ago

How Node.js Lets JavaScript Run on the Server

Node.js allows JavaScript to run on servers, enabling full stack development with a single language.
Node JS
fromInfoWorld
2 months ago

Node.js 22 arrives, backs ECMAScript modules

Node.js 22 adds require() support for synchronous ESM graphs, improved WebSocket client, V8 12.4, larger stream high-water mark, and stable watch mode.
Node JS
fromTreehouse Blog
2 weeks ago

How Node.js Lets JavaScript Run on the Server

Node.js allows JavaScript to run on servers, enabling full stack development with a single language.
Node JS
fromThe Cyber Express
1 month ago

Node.js Fixes CVE-2026-21637 And Critical Flaws Now

Node.js has released security updates addressing multiple vulnerabilities, including critical issues in TLS error handling and HTTP request processing.
React
fromInfoQ
3 weeks ago

TanStack Start Introduces Import Protection to Enforce Server and Client Boundaries

TanStack Start introduces import protection to prevent server-only and client-only code from leaking into incorrect bundles.
DevOps
fromInfoWorld
3 weeks ago

What front-end engineers need to know about AWS

Understanding AWS infrastructure improves front-end debugging and UI performance.
fromSlicker
4 weeks ago

Basic Physics Engine in about 100 lines of pure JavaScript

The Vec class implements 2D vectors, providing essential operations like addition, subtraction, scaling, and normalization, which are fundamental for all geometric calculations in the simulation.
Vue
Web frameworks
fromInfoQ
4 weeks ago

FOSDEM 2026: Intro to WebTransport - the Next WebSocket?!

WebTransport enhances WebSocket capabilities by providing lower latency and better performance for modern applications like gaming and live streaming.
Marketing tech
fromAdExchanger
1 month ago

The JavaScript Overload; Whatever, AI Will Handle It | AdExchanger

News publishers are compromising long-term reader retention for short-term ad revenue, leading to bloated web pages and diminished content visibility.
Python
fromDEV Community
1 month ago

I Wrapped My Free npm Package as a Paid REST API - Here's the Architecture

A REST API solves the cross-language accessibility problem that npm packages face, enabling Python, Ruby, PHP developers and no-code tools to access textlens functionality without maintaining multiple codebases.
Angular
fromInfoQ
1 month ago

Mobile Server-Driven UI at Scale

Nubank's mobile platform team manages infrastructure for a digital banking app serving 115 million customers across 40 million daily users, supporting 3,000 engineers developing features in Flutter, iOS, and Android.
fromInfoWorld
1 month ago

We mistook event handling for architecture

Events are essential inputs to modern front-end systems. But when we mistake reactions for architecture, complexity quietly multiplies. Over time, many front-end architectures have come to resemble chains of reactions rather than models of structure. The result is systems that are expressive, but increasingly difficult to reason about.
React
JavaScript
fromSmashing Magazine
1 month ago

Moving From Moment.js To The JS Temporal API - Smashing Magazine

JavaScript's date/time handling evolved from the limited Date API to Moment.js and now to Temporal, a new standard that addresses previous limitations and provides superior flexibility for modern applications.
Web frameworks
fromSubstack
1 month ago

Blob Objects in JavaScript: A Practical Guide to Files, Previews, Downloads, and Memory

Blob objects are essential for efficient file handling in frontend development, addressing issues like memory management and performance.
DevOps
fromInfoQ
1 month ago

QCon London 2026: Managing Asynchronous APIs at Scale

Event-driven architectures require explicit specifications, governance, and provisioning practices to scale beyond informal ad-hoc approaches, using tools like AsyncAPI to enable discovery, schema consistency, and automated infrastructure deployment.
Node JS
fromhowtocenterdiv.com
1 month ago

Bun vs Node.js Performance: Why Your Event Loop Is the Real Bottleneck

Bun outperforms Node.js in specific benchmarks, but real-world performance issues often stem from database and CPU bottlenecks, not runtime choice.
fromMedium
2 months ago

Fire-and-Forget REST APIs: A TDD Journey.

The request for its API val request = Request[IO](Method.POST, uri&quot;/jobs&quot;)val api = new AsyncJobApi // this will not compile since AsyncJobApi is not defined yet Minimal implementation to make it green: class AsyncJobApi Red test: The API should return a 202 Accepted response: &quot;POST /jobs returns Accepted&quot; in { val request = Request[IO](Method.POST, uri&quot;/jobs&quot;) val api = new AsyncJobApi api.routes.orNotFound.run(request).asserting : response =&gt; response.status shouldBe Status.Accepted} Make it green: class AsyncJobApi { val routes: HttpRoutes[IO] = HttpRoutes.of[IO] : case req @ POST -&gt; Root / &quot;jobs&quot; =&gt; Accepted()} 5.2 Add headers (Trivial Implementation) Red test: add X-Total-Count and Location headers with job ID (only the assertion is shown)
Scala
#webassembly
Node JS
fromInfoWorld
1 month ago

Edge.js launched to run Node.js for AI

Edge.js is a WebAssembly-based JavaScript runtime that safely executes Node.js applications with faster startup times by sandboxing workloads through WASIX.
fromInfoQ
2 months ago
Software development

How WebAssembly Components Enable Safe and Portable Software Extensions

Node JS
fromInfoWorld
1 month ago

Edge.js launched to run Node.js for AI

Edge.js is a WebAssembly-based JavaScript runtime that safely executes Node.js applications with faster startup times by sandboxing workloads through WASIX.
fromInfoQ
2 months ago
Software development

How WebAssembly Components Enable Safe and Portable Software Extensions

fromLogRocket Blog
2 months ago

UI patterns for async workflows, background jobs, and data pipelines - LogRocket Blog

This same sense of uncertainty can be triggered in software products. Many digital experiences consist of background tasks, file imports, system updates, and other long-running processes that run quietly and invisibly, leaving users with no indications of progress or feedback. The user initiates an action, like a sync, a publish, or a bulk update, and is responsible for the outcome, while the system does all the work out of sight.
UX design
fromRaymondcamden
2 months ago

I threw thousands of files at Astro and you won't believe what happened next...

I began by creating a soft link locally from my blog's repo of posts to the src/pages/posts of a new Astro site. My blog currently has 6742 posts (all high quality I assure you). Each one looks like so: --- layout: post title: &quot;Creating Reddit Summaries with URL Context and Gemini&quot; date: &quot;2026-02-09T18:00:00&quot; categories: [&quot;development&quot;] tags: [&quot;python&quot;,&quot;generative ai&quot;] banner_image: /images/banners/cat_on_papers2.jpg permalink: /2026/02/09/creating-reddit-summaries-with-gemini description: Using Gemini APIs to create a summary of a subreddit. --- Interesting content no one will probably read here...
Austin
Web development
fromLogRocket Blog
2 months ago

Anti-libraryism: 10 web APIs that replace modern JavaScript libraries - LogRocket Blog

Major browsers provide native Web APIs that replace many common JavaScript libraries, enabling smaller bundles, improved runtime performance, and reduced dependency maintenance.
fromMedium
1 year ago

Modern Web Architectures: Composability with Harmony

Over the past decade, software development has undergone a massive transformation due to continuous innovations in tools, processors and novel architectures. In the past, most applications were monoliths and then shifted to microservices, and now we find ourselves embracing composability - a paradigm that prioritizes modular, reusable, and flexible software design. Instead of writing separate, tightly coupled applications, developers now compose software using reusable business capabilities that can be plugged into multiple projects. This enables greater scalability, maintainability, and collaboration across teams and organizations. At the heart of this movement is Bit Harmony, a framework designed to make composability a first-class citizen in modern web development.
Software development
Software development
fromInfoWorld
2 months ago

Why your next microservices should be streaming SQL-driven

Streaming SQL with UDFs, materialized results, and ML/AI integrations enables continuous, stateful processing of event streams for microservices.
Node JS
fromAllthingssmitty
1 month ago

Native JSON modules are finally real - Matt Smith

Import attributes enable native JSON module support in JavaScript, eliminating the need for bundler transforms by allowing explicit type declaration with the `with { type: "json" }` syntax.
#deno
#neutralinojs
Web frameworks
fromLoicpoullain
2 months ago

The future of web frameworks in the age of AI

AI agents now generate 90-95% of production code, requiring frameworks to be AI-understandable with comprehensive documentation and clear examples to remain competitive.
#react
React
fromMedium
3 years ago

Oh Hello Apollo Client , Goodbye Redux!

Apollo Client 3 combined with GraphQL and React hooks can replace Redux for many apps by reducing boilerplate and providing built-in loading, error, and cache features.
fromMedium
2 months ago

JSON Serialisation Explained with a Recipe

The project behind this post is intentionally a bit over-engineered - in the &quot;let's see what breaks when things grow&quot; sense. That's by design. While a simple recipe example could easily be modelled with plain strings and numbers, cookbook explores more advanced, real-world concerns: extensibility, customisation, validation, and precise handling of numeric values, including floating-point quantities. The recipe domain is just a familiar, low-stakes vehicle for discussing these deeper ideas.
Software development
fromThe NodeSource Blog - Node.js Tutorials, Guides, and Updates
5 months ago

Express.js 6 and Beyond: Modernizing the Most Popular Node.js Framework

Two years ago, the Express team initiated a complete revamp of the project's governance. What was once a largely single-maintainer effort under Doug Wilson evolved into a structured Technical Committee (TC) with multiple active contributors. "Our goal was to evolve Express from a single-maintainer project into a sustainable, community-driven effort - one built on shared responsibility, clear processes, and long-term vision," Ulises explained.
Web frameworks
fromInfoQ
1 month ago

Vercel Releases React Best Practices Skill with 40+ Performance Rules for AI Agents

Vercel, the cloud platform behind Next.js, has released react-best-practices, an open-source repository containing over 40 performance optimization rules for React and Next.js applications. The framework, which encapsulates over a decade of engineering knowledge from Vercel's production codebases, is structured specifically for consumption by AI coding agents and LLMs, though the team notes it is equally valuable for human developers.
Web development
Software development
fromInfoWorld
2 months ago

Weighing the benefits of AWS Lambda's durable functions

AWS Lambda durable functions add native stateful orchestration and long-running waits, improving serverless workflows but increasing vendor lock-in risk.
Web development
fromInfoQ
2 months ago

Cloudflare Launches Vertical Microfrontend Template for Path-Based Edge Routing

Vertical Microfrontends map independent Cloudflare Workers to URL paths, enabling team-owned vertical stacks with low-latency edge routing and SPA-like transitions.
Web frameworks
fromInfoQ
1 month ago

Cloudflare Releases Experimental Next.js Alternative Built With AI Assistance

Cloudflare released vinext, an experimental Next.js reimplementation built on Vite, developed by one engineer in one week using AI for $1,100, achieving 4.4x faster builds and 57% smaller client bundles than Next.js with Turbopack.
fromInfoWorld
1 month ago

The right way to architect modern web applications

Modern web applications are no longer just "sites." They are long-lived, highly interactive systems that span multiple runtimes, global content delivery networks, edge caches, background workers, and increasingly complex data pipelines. They are expected to load instantly, remain responsive under poor network conditions, and degrade gracefully when something goes wrong.
Web frameworks
Software development
fromInfoQ
2 months ago

The Ideal Micro-Frontends Platform

Micro-frontends apply microservice principles to the frontend, enabling autonomous teams but requiring solutions beyond runtime component loading due to added complexity.
Web frameworks
fromInfoWorld
2 months ago

Reactive state management with JavaScript Signals

Signals provide fine-grained reactive state that pushes updates efficiently, simplifying state management and reducing framework rendering overhead.
#opentelemetry
Web frameworks
fromSubstack
1 month ago

When to Use BFF and Should It Replace API Gateway?

Backend for Frontend (BFF) pattern optimizes APIs for specific client needs, reducing frontend complexity and enabling faster team iteration across multiple platforms.
fromInfoQ
2 months ago

Astro Announces Version 6 Beta with Redesigned Development Server and First-Class Cloudflare Workers

The most complete example of what the new development server makes possible is support for Cloudflare Workers. With Astro 6 Beta, astro dev can now run applications using workerd, Cloudflare's open-source JavaScript runtime, which is the same runtime that powers Cloudflare Workers in production. This means developers can now develop directly against real platform APIs rather than simulations or polyfills.
Web frameworks
Node JS
fromInfoWorld
1 month ago

Why local-first matters for JavaScript

JavaScript innovation accelerates through local-first SQL datastores, universal isomorphic JavaScript via WinterTC, reactive signals adoption, NPM alternatives, Java-JavaScript bridges, and Deno's resurgence.
Node JS
fromInfoWorld
2 months ago

WinterTC: Write once, run anywhere (for real this time)

Unified JavaScript runtime standard WinterTC creates a consistent guaranteed API surface across browsers, servers, and edge runtimes to reduce fragmentation.
fromInfoWorld
2 months ago

Deno boosts dependency management with JSR

JSR offers a modern, TypeScript-first and cross-platform-compatible registry, integrated into Deno, Deno's developers said. For Node.js and NPM compatibility, Deno 1.42 offers numerous improvements. The async_hooks module now supports the EventEmitterAsyncResource and AsyncLocalStorage.enterWith APIs. The crypto module adds getRandomValues(), subtle, getCipherInfo(), publicKey(), and createPublicKey() APIs, along with support for more curves in multiple APIs. The worker_threads module received a major overhaul.
Node JS
[ Load more ]