[Vuejs]-What to do about failed *npm ini vue@latest*?

3👍

npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE   package: 'create-vue@3.2.2',
npm WARN EBADENGINE   required: { node: '^14.16.0 || >=16.0.0' },
npm WARN EBADENGINE   current: { node: 'v12.22.12', npm: '7.5.2' }
npm WARN EBADENGINE }

NPM warns you to update your node version, v14 LTS is fine but v16.x.x is ok too.

If you need the v12 for something else I suggest you to look into NVM for managing multiple Node versions.

Leave a comment