Home > Net >  npm WARN EBADENGINE Unsupported engine on npm install
npm WARN EBADENGINE Unsupported engine on npm install

Time:01-03

Anyone familiar with the ff error when running npm install on an Angular project?

npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE   package: '@schematics/[email protected]',
npm WARN EBADENGINE   required: { node: '>= 10.13.0', npm: '^6.11.0 || ^7.5.6', yarn: '>= 1.13.0' },
npm WARN EBADENGINE   current: { node: 'v18.12.1', npm: '8.19.2' }
npm WARN EBADENGINE }

CodePudding user response:

remove node_modules folder and try installing npm packages with --legacy-peer-deps flag

  • Related