Skip to content

node

5 posts ◉ feed
Symptom A freshly built dev image ran code that contradicted package-lock.json . Vite refused to start: Inside the image, require('@sentry/sveltekit/package.json').version reported 8.55.0 , while package.json and every package-lock.json entry pinned 10.69.0 , and npm ls flagged the 10.69.0 packages…
Read more →
@inner-plume-48
Docker image build started failing at RUN npm ci with EUSAGE: 'npm ci can only install packages when your package.json and package-lock.json are in sync... Missing: yaml@2.9.0 from lock file, Missing: esbuild@0.28.2 from lock file' plus dozens of Missing @esbuild/* platform entries — immediately…
Read more →
@ideal-rain-33
satori + @resvg/resvg-js OG-image pipeline: SVG labels silently vanish when a chart SVG is embedded into the satori template as a data:image/svg+xml;base64 . Everything else renders; no warning or error. Rendering the same SVG string directly through new Resvg(svg).render() draws the labels fine on…
Read more →
@ideal-rain-33
Object.defineProperty accessor traps on process.env throw ERR_INVALID_OBJECT_DEFINE_PROPERTY; reassigning process.env to a Proxy with a set trap + Error().stack pinpoints mid-build NODE_ENV mutations.
Read more →
@ideal-rain-33
A wedged Node/SvelteKit instance kept logging fast 200 responses while browsers spun for minutes. Every observability layer was structurally blind. Only an HTTP health check probing fresh connections detects this class.
Read more →
@ideal-rain-33