#ajax--jsonp

[ follow ]
#javascript
Node JS
fromAlex MacArthur
4 days ago

Your options for preloading images with JavaScript

Preloading images in JavaScript can be achieved through various methods, with the best choice depending on specific circumstances.
Node JS
fromAlex MacArthur
4 days ago

Your options for preloading images with JavaScript

Preloading images in JavaScript can be achieved through various methods, with the best choice depending on specific circumstances.
fromInfoQ
1 week ago

Experimental Web Install API Seeks to Improve Application Discovery and Distribution

The Web Install API aims to fix the issue of inconsistent and proprietary mechanisms for acquiring applications by creating an open, ergonomic, standardized, and cross-platform supported way of acquiring applications.
Web development
Django
fromLoopwerk
1 week ago

Building modern Django apps with Alpine AJAX, revisited

Simplifying the web development stack with an all-Django approach and Alpine AJAX improves efficiency and reduces unnecessary complexity.
#nodejs
Web frameworks
fromSubstack
2 weeks 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.
Marketing tech
fromAdExchanger
2 weeks 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.
fromInfoWorld
2 weeks 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
Python
fromDEV Community
2 weeks 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.
JavaScript
fromSmashing Magazine
3 weeks 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.
Node JS
fromInfoWorld
2 weeks 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.
fromRaymondcamden
3 weeks ago

Testing Live Content Collections in Astro V6

One of the reasons I've been digging Astro so much is that it nicely straddles the SSG world and Node.js server worlds. When building your app, you can make logical decisions about what should be done at build time versus what should be done dynamically. It's like having Express and Eleventy rolled into one solution.
Web frameworks
Python
fromRealpython
3 weeks ago

Working With APIs in Python: Reading Public Data - Real Python

Python with the Requests library enables efficient consumption of REST, SOAP, and GraphQL APIs through HTTP communication, supporting various authentication methods like API keys and OAuth.
Web design
fromSearch Engine Roundtable
4 weeks ago

Google Says Loading Content With JavaScript Does Not Make It Harder For Google Search

Google removed outdated accessibility guidance from JavaScript SEO documentation, confirming that JavaScript-based content loading no longer hinders Google Search indexing or assistive technology functionality.
Node JS
fromAllthingssmitty
2 weeks 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.
Web development
fromRaymondcamden
1 month ago

Using Astro for a Combined RSS View and Generator

An Astro application aggregates multiple Webflow developer product RSS feeds into a unified interface and serves a combined RSS feed for easier tracking of all updates.
Web development
fromInfoWorld
1 month ago

The browser is your database: Local-first comes of age

Local-first technologies like PGlite and RxDB embed feature-rich databases directly in browsers, enabling instant interactivity while maintaining server synchronization through background sync engines.
Web frameworks
fromLoicpoullain
1 month 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.
Web development
fromLogRocket Blog
1 month 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.
#jquery
fromMedium
2 months ago

JSON Serialisation Explained with a Recipe

The project behind this post is intentionally a bit over-engineered - in the "let's see what breaks when things grow" 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
fromMedium
1 month ago

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

The request for its API val request = Request[IO](Method.POST, uri"/jobs")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: "POST /jobs returns Accepted" in { val request = Request[IO](Method.POST, uri"/jobs") val api = new AsyncJobApi api.routes.orNotFound.run(request).asserting : response => response.status shouldBe Status.Accepted} Make it green: class AsyncJobApi { val routes: HttpRoutes[IO] = HttpRoutes.of[IO] : case req @ POST -> Root / "jobs" => 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
#astro
Software development
fromRaymondcamden
2 months ago

Using Chrome AI to Rewrite Monstrous JSON

Gen AI can transform structured JSON game data into creative, human-readable descriptions that produce randomized, engaging summaries for monsters and other datasets.
fromkrasimirtsonev.com
2 months ago

Streaming JSON in just 200 lines of JavaScript

I was continueing my exploration of React server components when I stumbled upon on this article about progressive JSON. Dan Abramov describes a technique for streaming JSON from a server to a client in chunks, allowing the client to start rendering parts of the data before the entire payload has been received. This can significantly improve perceived performance, especially for large datasets.
Web development
fromHeat.js
2 months ago

Heat.js : JavaScript Heat Map

Completely free and open source (view our licence here). data_object Supports export for integration with frameworks including React, Vue, and Angular. Fully configurable, featuring custom triggers and adjustable text to support multiple language locales. 60 languages supported by default (view the languages here). Includes multiple views, including Map, Line, Chart, Days, Months, and Color Ranges. export_notes Export data to multiple file formats (view the supported types here), with system clipboard setting support.
Web design
#deno
fromLogRocket Blog
2 months ago

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

Today's browsers can handle most of the problems that frontend frameworks were originally created to solve. Web Components provide encapsulation, ES modules manage dependencies, modern CSS features like Grid and container queries enable complex layouts, and the Fetch API covers network requests. Despite this, developers still default to React, Angular, Vue, or another JavaScript framework to address problems the browser already handles natively. That default often trades real user costs -page weight, performance, and SEO - for developer convenience.
Web frameworks
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
fromSitePoint Forums | Web Development & Design Community
2 months ago

What's the most impactful first step to improve website speed when starting from scratch?

When building or optimizing a website from scratch, performance can easily be overlooked until problems start showing up-slow load times, poor user experience, and lower search rankings. There are many ways to improve website speed, such as image optimization, code minification, caching, choosing better hosting, or using a CDN. For developers and site owners starting fresh, it's often unclear which step delivers the biggest impact
Web development
[ Load more ]