On-the-fly image resizing that serves the /generated/... URLs produced by resizerImageUrl (@uxf/core). It ships Next.js App Router route handlers for local development and a standalone HTTP server (uxf-resizer, built on Hono) for self-hosting. Resizing is done with sharp.
This package serves and generates resized images. It does not build image URLs — that is done client-side by resizerImageUrl from @uxf/core/utils/resizer, which encodes the resize parameters into a /generated/... path.
/generated/... requests; you typically do not run this package there.ProxyGET / StaticGET as Next.js route handlers so /generated/... URLs resolve during next dev.uxf-resizer CLI (Hono server on Node) driven by a config file.Both entry points read the same URL segments (width, height, fit, position, background, trim, quality, target format) and pipe the source image through sharp. Generated files are cached on disk and re-served on subsequent requests.
yarn add @uxf/resizer --devThe only runtime dependency is sharp. The standalone server additionally needs hono, @hono/node-server, and yargs — they are not installed transitively, so add them yourself when you use the CLI:
yarn add @uxf/resizer hono @hono/node-server yargs --devNode >= 24 is required (route matching uses the built-in URLPattern).
Next.js App Router route handlers for local development. Two handlers are exported:
ProxyGET — proxies uploaded images from the API and resizes them.StaticGET — resizes static assets (public/ files and Next.js _next/static/media imports).Folder structure:
src/
app/
generated/
[...path]/
route.ts # ProxyGET → uploaded images
static/
[...path]/
route.ts # StaticGET → static images
// src/app/generated/[...path]/route.ts
import { ProxyGET as GET } from "@uxf/resizer";
export { GET };
// src/app/generated/static/[...path]/route.ts
import { StaticGET as GET } from "@uxf/resizer";
export { GET };
Both handlers read their upstream location from environment variables:
# .env.local
NEXT_PUBLIC_FRONTEND_URL=http://127.0.0.1:3000 # StaticGET source (Next.js static media)
NEXT_PUBLIC_API_URL=https://uxf.cz # ProxyGET source (fetches <API_URL>/upload/...)
Exported from the package root (@uxf/resizer):
| Export | Signature | Description |
|---|---|---|
ProxyGET | (request: Request) => Promise<Response> | Next.js route handler. Matches /generated/:namespace/:p1/:p2/:filename_..._:extension.:toFormat, fetches the source from ${NEXT_PUBLIC_API_URL}/upload/:namespace/:p1/:p2/:filename.:extension, resizes, caches under the process CWD, and returns the image. |
StaticGET | (request: Request) => Promise<Response> | Next.js route handler. Matches /generated/static/..._:quality/:version/:filename.:extension.:toFormat. Reads local public/:filename.:extension; for _next/static/media/* imports it fetches from ${NEXT_PUBLIC_FRONTEND_URL}. |
Command-line server:
uxf-resizerStarts a Hono server (via @hono/node-server) on port 3000 that applies the routes from the configuration (see below). Requires the extra dependencies listed under Installation. Responses carry Content-Type, Content-Length and Last-Modified; the server does not emit ETag and does not handle Range or conditional requests — put a cache/CDN in front of it if you need those.
The URL segments understood by every route. They are produced by resizerImageUrl (@uxf/core) and mapped onto sharp options.
| Parameter | Values | Default (falls back to sharp) |
|---|---|---|
| width | number or x (auto) | undefined (auto) |
| height | number or x (auto) | undefined (auto) |
| fit | fit code (see below) | cover |
| position | position code (see below) | sharp default (centre) |
| background | hex (e.g. FFFFFF) or t (transparent) | t when the route has no segment |
| trim | number (threshold) or nt (no trim) | no trim |
| quality | number (1–100) or x (auto) | sharp default (avif: 50, others: 80) |
| toFormat | webp, png, avif, jpg, svg | jpg |
svg is a passthrough — the source file is copied unchanged, without resizing. A route does not have to capture every parameter: a missing fit, position, background, trim or quality falls back to the default in the table.
cv: coverf: fillcn: containin: insideout: outsidea: attentionb: bottomc: centree: entropyl: leftlb: left bottomlt: left topr: rightrb: right bottomrt: right topt: topThe uxf-resizer CLI reads its config from .resizer-config.json in the working directory, or from the UXF_RESIZER_CONFIG environment variable (an inline JSON string, which takes precedence). Generated files are written to UXF_RESIZER_GENERATE_PATH (defaults to the process CWD).
The config is an array of { route, source } objects.
route is a URLPattern pathname pattern (Node's built-in implementation; the syntax is path-to-regexp v6 compatible): :name, :name(regexp), several parameters per segment (:width(\d+)_:height(\d+)), :name(.*) to capture across slashes. Matching is case-insensitive and captured values are percent-decoded. The first matching route wins.source is the original file location (a local path or an http(s) URL, which is fetched). Every :name is replaced by the captured value; a +, * or ? suffix is accepted and ignored (:filename+ and :filename are equivalent). The domain may itself be a parameter (https://:url/...); a port such as localhost:3000 is left alone.The legacy Express form :filename(*) is still accepted and rewritten to :filename(.*) with a startup warning — update your configs.
[
{
"route": "/generated/static/:width(\\d+|x)_:height(\\d+|x)_:fit([a-z]+)_:position([a-z]+)_:background([a-z]+)_:trim([a-z]+)_:quality(\\d+|x)/:version/:filename(.*).:extension.:toFormat",
"source": "https://static.example.dev/:filename+.:extension"
},
{
"route": "/generated/:namespace/:p1/:p2/:filename([a-f0-9\\-]+)_:width(\\d+|x)_:height(\\d+|x)_:fit([a-z]+)_:position([a-z]+)_:background([a-z]+)_:trim([a-z]+)_:quality(\\d+|x)_:extension.:toFormat",
"source": "https://s3.example.dev/:namespace/:p1/:p2/:filename.:extension"
}
]
resizerGetDefaultConfig(generatedFilesUrl, staticFilesUrl) from @uxf/core/utils/resizer returns exactly this two-route shape.
Deprecated — use the global resizer for all projects instead.
[
{
"route": "/generated/static/:width(\\d+|x)_:height(\\d+|x)_:fit([a-z]+)_:position([a-z]+)_:background([a-z]+)_:trim([a-z]+)_:quality(\\d+|x)/:version/:filename(.*).:extension.:toFormat",
"source": "https://uxf-base.uxf.dev/:filename+.:extension"
},
{
"route": "/generated/:namespace/:p1/:p2/:filename([a-f0-9\\-]+)_:width(\\d+|x)_:height(\\d+|x)_:fit([a-z]+)_:position([a-z]+)_:background([a-z]+)_:trim([a-z]+)_:quality(\\d+|x)_:extension.:toFormat",
"source": "https://s3.uxf.dev/${APP_NAME}-${APP_ENV}/:namespace/:p1/:p2/:filename.:extension"
}
]
resizerImageUrl from @uxf/core/utils/resizer; this package only serves the resulting paths.hono, @hono/node-server, and yargs are dev dependencies of this package, so a consumer running uxf-resizer must install them explicitly.fit, a non-numeric width) falls back to sharp defaults or makes sharp throw, which is answered with 404.3000 and an empty or invalid configuration (including a route URLPattern cannot parse) throws on startup. SIGINT/SIGTERM close the server.quality defaults to sharp's own defaults when set to x (avif ≈ 50, others ≈ 80). Values are expected in the 1–100 range.@hono/node-serverresizerImageUrl in @uxf/core/utils/resizer