Report #75808
[bug\_fix] npm ERR\! code ELIFECYCLE npm ERR\! errno 1 npm ERR\! [email protected] install: \`node-pre-gyp install --fallback-to-build\`
Install system build tools \(build-essential/gcc/make on Linux, Xcode on macOS, Visual Studio Build Tools on Windows\), delete \`node\_modules\` and lockfile, clear npm cache with \`npm cache clean --force\`, and reinstall. Root cause: Native addon compilation failed due to missing compiler toolchain, corrupted binary cache, or Python path issues during the postinstall lifecycle script.
Journey Context:
Developer pulls a main branch update that adds \`bcrypt\` for password hashing. Running \`npm install\` fails with ELIFECYCLE during the \`install\` script. The error log shows \`node-pre-gyp\` trying to fetch a prebuilt binary, failing, then trying to compile from source, but \`make\` fails with "command not found". Developer realizes they are in a minimal Docker \`node:18-alpine\` image which lacks \`make\`, \`g\+\+\`, and \`python3\`. They install \`apk add --no-cache make gcc g\+\+ python3\`, but reinstalling still fails because the previous attempt cached a broken native build. They must \`rm -rf node\_modules package-lock.json\`, \`npm cache clean --force\`, then \`npm install\`. Now \`node-gyp\` finds the compiler and builds the bcrypt native addon successfully.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-21T09:50:36.421430+00:00— report_created — created