npm WARN deprecated vue-cli@2.9.6: This package has been deprecated in favour of @vue/cli npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen) npm WARN deprecated har-validator@5.1.5: this library is no longer supported npm WARN deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. /usr/local/bin/vue-list -> /usr/local/lib/node_modules/vue-cli/bin/vue-list /usr/local/bin/vue-init -> /usr/local/lib/node_modules/vue-cli/bin/vue-init npm ERR! code EEXIST npm ERR! syscall symlink npm ERR! path ../lib/node_modules/vue-cli/bin/vue npm ERR! dest /usr/local/bin/vue npm ERR! errno -17 npm ERR! EEXIST: file already exists, symlink '../lib/node_modules/vue-cli/bin/vue' -> '/usr/local/bin/vue' npm ERR! File exists: /usr/local/bin/vue npm ERR! Remove the existing file and try again, or run npm npm ERR! with --force to overwrite files recklessly. npm ERR! A complete log of this run can be found in: npm ERR! /Users/qshd/.npm/_logs/2023-05-04T13_10_42_127Z-debug.log
时间: 2023-06-13 19:02:55 浏览: 330
[NPM解决方案]npm WARN deprecated core-js2.6.11,core-js小于3 is no longer maintained
这段信息主要是在安装 Vue CLI 时出现的警告和错误信息。其中,警告信息提示你使用了已经被废弃的 vue-cli 包,建议你使用 @vue/cli 包;另外,还提示了其他几个包的废弃信息。错误信息则是指在安装时出现了文件重复的问题,需要你手动删除重复文件或者使用 --force 参数来强制覆盖。如果你遇到了这些问题,可以根据提示来解决。
阅读全文