Web frameworks

[ follow ]
fromSitePoint Forums | Web Development & Design Community
44 minutes ago

Optimizing Nuxt 2 hydration and Cloudflare R2 image loading for a gallery page?

I'm currently building a web app using NuxtJS 2 for the frontend and NestJS for the backend, relying on third-party APIs (like Replicate) for the heavy lifting. I'm using Cloudflare R2 to store the generated output images. I'm running into some performance bottlenecks when rendering specific landing pages that contain heavy, dynamic image galleries. For instance, I'm trying to optimize the SEO and load speed for my AI Pet Portrait Generator free tool page.
Web frameworks
#django
fromRednegra
1 day ago

Virtual Scrolling for Billions of Rows - Techniques from HighTable

The component also provides features for columns (sort, hide, resize), rows (select), cells (keyboard navigation, pointer interactions, custom rendering). Feel free to ask and look at the code if you're interested in knowing more. The <HighTable> component is developed at hyparam/hightable. It was created by Kenny Daniel for Hyperparam, and I've had the chance to contribute to its development for one year now.
Web frameworks
fromPaolo Melchiorre
1 day ago

Django ORM Standalone: Querying an existing database

For a long time I wanted to document something I have done many times in production systems but never explained clearly: using Django ORM as a standalone module to connect to an existing database. In my work I have often dealt with legacy systems where the only reliable source of truth was the database itself. In those situations, Django ORM became my Swiss army knife.
Web frameworks
#react
Web frameworks
fromRaymondcamden
5 days ago

Three Plug-N-Play CSS Libraries

Lightweight CSS libraries provide simple, attractive styling with minimal markup changes, ideal for demos, POCs, and quick clean interfaces.
Web frameworks
fromInfoWorld
1 week 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.
fromInfoQ
1 week ago

Waku: The Minimal React Framework Reaches Alpha

Waku, a minimal React framework has released version 1.0 alpha, marking its public API surface area as stable as the project shifts focus towards bug fixes and compatibility improvements. Waku 1.0 alpha represents a significant milestone for the lightweight framework, which has been in development for nearly three years. The release stabilises the framework's public APIs and signals a transition from feature development to refinement and stability.
Web frameworks
fromPybites
1 week ago

How Dependency Injection Makes Your FastAPI Code Better Testable - Pybites

What's happening here: Type-safe - Your editor knows repo is a SnippetRepository. Full autocomplete, type checking works. Automatic cleanup - The context manager ensures the database session closes, even if an exception occurs. No global state - Every request gets its own session. No risk of one request interfering with another. Testable - Here's the magic: You override the dependency with an in-memory implementation. Your test doesn't hit the database.
Web frameworks
fromInfoQ
2 weeks 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
fromDjango Project
2 weeks ago

Recent trends in the work of the Django Security Team

We also patched two potential denial-of-service vulnerabilities when handling large, malformed inputs. One exploits inefficient string concatenation in header parsing under ASGI ( CVE 2025-14550). Concatenating strings in a loop is known to be slow, and we've done fixes in public where the impact is low. The other one ( CVE 2026-1285) exploits deeply nested entities. December's vulnerability in the XML serializer ( CVE 2025-64460) was about those very two themes.
Web frameworks
fromPycoders
2 weeks ago

PyCoder's Weekly | Issue #720

subprocess module relies on busy-loop polling to determine whether a process has completed yet. Modern operating systems have callback mechanisms to do this, and Python 3.15 will now take advantage of these.
Web frameworks
Web frameworks
fromMedium
2 weeks ago

Is separation of concerns a goal or a lie?

Separation of concerns makes frameworks like React and Tailwind beneficial by dividing complex problems into manageable parts, improving team collaboration and long-term maintainability.
#astro
#nextjs
fromInfoQ
2 months ago
Web frameworks

Vercel's Next.js 16: Explicit Caching, Turbopack Stability, and Improved Developer Tooling

fromInfoQ
2 months ago
Web frameworks

Vercel's Next.js 16: Explicit Caching, Turbopack Stability, and Improved Developer Tooling

fromLoopwerk
3 weeks ago

Django's test runner is underrated

Readable failures. When something breaks, I want to understand why in seconds, not minutes. Predictable setup. I want to know exactly what state my tests are running against. Minimal magic. The less indirection between my test code and what's actually happening, the better. Easy onboarding. New team members should be able to write tests on day one without learning a new paradigm.
Web frameworks
fromInfoWorld
3 weeks ago

Get started with Angular: Introducing the modern reactive workflow

Angular is a cohesive, all-in-one reactive framework for web development. It is one of the larger reactive frameworks, focused on being a single architectural system that handles all your web development needs under one idiom. While Angular was long criticized for being heavyweight as compared to React, many of those issues were addressed in Angular 19. Modern Angular is built around the Signals API and minimal formality, while still delivering a one-stop-shop that includes dependency injection and integrated routing.
Web frameworks
Web frameworks
fromFoalts
4 weeks ago

Version 5.2 release notes | FoalTS

Foal 5.2 adds PasswordService for centralized password hashing with automatic hash upgrades and TypeORMStore support for both numeric and string user IDs.
Web frameworks
fromInfoWorld
3 weeks ago

OpenSilver 3.3 runs Blazor components inside XAML apps

OpenSilver 3.3 lets Blazor components run inside XAML apps, sharing DOM and runtime, enabling the same C# code to deploy across web and native platforms.
fromThe NodeSource Blog - Node.js Tutorials, Guides, and Updates
3 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
Web frameworks
fromNeutralino
3 weeks ago

Framework | Neutralinojs

Neutralinojs adds runtime borderless toggling, custom Chrome binary option, DPI-aware sizing, extra path constants, numerous platform fixes, and embedded resource single-executable support.
Web frameworks
fromInfoWorld
3 weeks ago

Kotlin-based Ktor 3.4 boosts HTTP client handling

Ktor 3.4 adds runtime endpoint documentation with a compiler plugin, OkHttp duplex streaming for HTTP/2, and Zstd compression support.
Web frameworks
fromLogRocket Blog
4 weeks ago

A dev's guide to Tailwind CSS in 2026 - LogRocket Blog

Tailwind CSS remains highly popular, but AI-driven code generation sharply reduced documentation traffic and Tailwind Labs' revenue, prompting major layoffs and strategic reassessment.
fromInfoWorld
4 weeks ago

Tailwind, AI, and building the future of software

But the nature of web design has changed since CSS was first built. Most frameworks, whether it be Angular, React, or Astro, have become component-based. But even those components were designed to separate CSS and HTML. For instance, in Angular, a component consists of three files: a TypeScript file, an HTML file, and a CSS file. But those components are becoming more and more granular.
Web frameworks
fromRealpython
1 month ago

Episode #280: Considering Fast and Slow in Python Programming - The Real Python Podcast

Christopher shares an article titled "The Uselessness of 'Fast' and 'Slow' in Programming." It digs into how the different aspects of software performance span a wide range of orders of magnitude, and how developers can obsess over irrelevant performance details, often losing more time working in suboptimal environments than building what they need with tools they already know. We also discuss an article about why uv is fast, which explains how most of its speed comes from engineering decisions rather than just being written in Rust.
Web frameworks
Web frameworks
fromInfoWorld
1 month ago

Astro web framework maker merges with Cloudflare

Cloudflare acquired Astro; Astro remains open source MIT, retains open governance and deployment flexibility, and released Astro 6 beta with redesigned development server.
fromInfoQ
1 month ago

Django Releases Version 6.0 with Built-In Background Tasks and Native CSP Support

Django, the Python web framework, has released Django 6.0, delivering a collection of developer-focused features, security enhancements, and performance improvements aimed at modernizing web application development. Django 6.0 introduces several major features, including a built-in background tasks framework, native Content Security Policy support, template partials for component-based development, and adoption of Python's modern email API. The release also includes support for Python 3.12, 3.13, and 3.14, while dropping support for Python 3.10 and 3.11.
Web frameworks
Web frameworks
fromLogRocket Blog
1 month ago

Anti-frameworkism: Choosing native web APIs over frameworks - LogRocket Blog

Modern browsers natively solve many frontend needs; frameworks should be adopted only when native APIs and performance trade-offs are insufficient.
#python
fromRealpython
1 month ago
Web frameworks

Episode #278: PyCoder's Weekly 2025 Top Articles & Hidden Gems - The Real Python Podcast

fromRealpython
1 month ago
Web frameworks

Episode #278: PyCoder's Weekly 2025 Top Articles & Hidden Gems - The Real Python Podcast

Web frameworks
fromScala.js
1 month ago

Announcing Scala.js 1.20.2

Scala.js 1.20.2 improves performance for JavaScript and WebAssembly backends and upgrades the standard library to match Scala 2.12.21 and 2.13.17.
Web frameworks
fromMedium
1 month ago

Scala Dependency Injection for Java Developers (Part 4): Bugs Spring Allows That Scala Prevents

Scala's explicit, compile-time dependency injection catches missing and misqualified dependencies that cause runtime errors in Spring.
Web frameworks
fromRubyflow
1 month ago

Test projects now at Telegem

Telegem is a modern async-first Ruby framework for building and interacting with the Telegram Bot API, focused on conversations, middleware, and DSL-based logic.
Web frameworks
fromInfoWorld
1 month ago

Back to the future: The most popular JavaScript stories and themes of 2025

Nitro provides a universal deployment engine that abstracts runtimes, enabling portable server-side JavaScript across Node, Cloudflare Edge, and other deployment targets.
fromInfoWorld
1 month ago

Intro to Hotwire: HTML over the wire

If you've been watching the JavaScript landscape for a while, you've likely noticed the trend toward simplicity in web application development. An aspect of this trend is leveraging HTML, REST, and HATEOAS (hypermedia as the engine of application state) to do as much work as possible. In this article, we'll look at Hotwire, a collection of tools for building single-page-style applications using HTML over the wire.
Web frameworks
Web frameworks
fromInfoQ
1 month ago

Nuxt Introduces Native Request Cancellation and Async Handler Extraction for Performance Gains

Nuxt 4.2 adds abort control for data fetching, experimental TypeScript plugin support, enhanced error handling, and async data handler extraction for performance gains.
fromInfoQ
2 months ago

oRPC Releases Version 1.0 with OpenAPI Support and End to End Type Safety

At the core of oRPC's design philosophy is what the team calls "powerful simplicity." Developers can define API endpoints with a syntax that feels similar to writing standard functions, while automatically gaining production features like OpenAPI specification generation, server action compatibility, and contract-first workflow support. The library supports multiple schema validators out of the box, including Zod, Valibot, and ArkType, without requiring additional configuration.
Web frameworks
Web frameworks
fromInfoWorld
2 months ago

Spring Boot tutorial: Get started with Spring Boot

Spring Boot streamlines Spring with convention-driven defaults, dependency injection, and out-of-the-box packages to simplify Java web application configuration and common tasks.
fromInfoQ
2 months ago

New Front-End Framework Ripple Blends React and Svelte Together

Ripple is a new open-source front-end framework taking ideas from React, SolidJS, and Svelte into a TypeScript-first, component-oriented, JSX-like compiled language with fine-grained reactivity and scoped CSS. Created by Svelte maintainer Dominic Gannaway, Ripple offers a reactivity system with automatic dependency tracking, and direct DOM updates without a virtual DOM. Ripple aims to support better debugging through AI agents. The following code sample exemplifies many of the core Ripple features:
Web frameworks
Web frameworks
fromInfoQ
2 months ago

ASP.NET Core in .NET 10: Major Updates Across Blazor, APIs, and OpenAPI

ASP.NET Core in .NET 10 delivers major improvements across Blazor, Minimal APIs, OpenAPI generation, authentication, diagnostics, runtime behavior, and security.
Web frameworks
fromInfoQ
2 months ago

Vike Releases Photon with Next-Gen JavaScript Deployment Infrastructure and Cloudflare Integration

Photon provides universal infrastructure for deploying JavaScript servers across platforms, replacing vike-server and enabling framework-agnostic deployments with improved Cloudflare workerd-based development and seamless platform APIs.
Web frameworks
fromLogRocket Blog
2 months ago

tRPC vs oRPC: Which is better for your next TypeScript project, and why? - LogRocket Blog

Choose tRPC for simple TypeScript-only workflows; choose oRPC when OpenAPI and cross-language integrations (Python, mobile, third-party) are required.
fromSitePoint Forums | Web Development & Design Community
2 months ago

What if you drive a bumpy journey off road?

Coming from the framework world with its wide streets, I've learned that all the magic and convenience comes with a hidden price tag. Every new version brought extra maintenance, dependency chains, and features I never asked for but had to carry. My move to the web has been a bumpy road - acronyms, frameworks, libraries everywhere. To make sense of it, I decided to document my journey.
Web frameworks
fromVue.js Jobs
2 months ago

Flanks Senior Vue Nuxt Frontend Engineer - VueJobs

Flanks is shaking up the wealth management industry by making it simpler and way more efficient for financial institutions. Our SaaS platform is designed to help banks, family offices, and wealth managers get a full picture of their clients' financial assets-all in one place. 💼💡 Founded in 2019 and based in Barcelona, we've brought together a team of passionate wealth management and tech pros, all with a shared goal: to change how wealth management is done.
Web frameworks
fromPython GUIs
2 months ago

Getting Started With the NiceGUI Library in Python

To get the most out of this tutorial, you should have a basic knowledge of Python. Familiarity with general GUI programming concepts, such as event handling, widgets, and layouts, will also be beneficial. Installing NiceGUI Before using any third-party library like NiceGUI, you must install it in your working environment. Installing NiceGUI is as quick as running the python -m pip install nicegui command in your terminal or command line. This command will install the library from the Python Package Index (PyPI).
Web frameworks
Web frameworks
fromInfoWorld
2 months ago

Writing code is so over

Web development evolved from single-file HTML pages with decorative GIFs and blinking text to dynamic JavaScript/CSS experiences, jQuery DOM control, and many JavaScript frameworks.
Web frameworks
fromLogRocket Blog
2 months ago

Ripple over React? Evaluating the newest JS framework - LogRocket Blog

RippleJS rethinks UI frameworks with a TypeScript-first, reactive-primitives approach that improves type safety and developer ergonomics over JSX-centered patterns.
Web frameworks
fromInfoQ
2 months ago

Google Ships Angular 21: Signal Forms, Zoneless Migration, and AI-First Tooling

Angular 21 advances reactivity with experimental Signal Forms, makes zoneless change detection the default, and adds AI-powered developer tooling and improved build tooling.
Web frameworks
fromgithub.com
2 months ago

Ant Design 6.0 is Here! Issue #55804 ant-design/ant-design

Ant Design v6 released with React minimum raised to 18, smooth migration from v5, performance and compatibility optimizations for React 19+, and improved component semantics.
Web frameworks
fromInfoQ
2 months ago

Spring News Roundup: GA Releases of Boot, Security, GraphQL, Integration, Modulith, Batch

Multiple Spring projects reached GA—Spring Boot 4.0, Spring Security 7.0, Spring for GraphQL 2.0, Spring Session 4.0—adding JSpecify and Jackson 3.0 support.
[ Load more ]