Деплой Node.js на AWS Elastic Beanstalk
★ 8.0 · vibe-coding
elastic-beanstalk-deployment is a Claude Code skill that guides deploying Node.js applications to AWS Elastic Beanstalk and resolving dependency-related deployment failures. It covers the platform's core behavior: when no `node_modules/` directory is present EB runs `npm install --omit=dev`, and when the folder exists it skips installation entirely and uses the bundled modules. The skill details two deployment strategies — letting EB install dependencies for smaller packages, or bundling `node_modules` for reliability and speed — along with a clean-context installation approach for monorepos that converts workspace references to `file:` paths to avoid symlink issues. Ideal for teams hitting "Cannot find module" errors, deploying apps with private packages, or needing consistent deployments independent of npm registry availability.