文章目录
环境
Ubuntu 版本信息:
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04 LTS
Release: 22.04
Codename: jammy
Node.js 版本信息:
$ node --version
v16.15.0
$ npm --version
8.5.5
安装 Vue CLI
查看 Vue CLI 版本信息:
$ npm view @vue/cli version
5.0.4
anzhuang
$ npm install --global @vue/cli
npm WARN deprecated resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated source-map-url@0.4.1: See https://github.com/lydell/source-map-url#deprecated
npm WARN deprecated urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated source-map-resolve@0.5.3: See https://github.com/lydell/source-map-resolve#deprecated
npm WARN deprecated graphql-extensions@0.15.0: The `graphql-extensions` API has been removed from Apollo Server 3. Use the plugin API instead: https://www.apollographql.com/docs/apollo-server/integrations/plugins/
npm WARN deprecated apollo-tracing@0.15.0: The `apollo-tracing` package is no longer part of Apollo Server 3. See https://www.apollographql.com/docs/apollo-server/migration/#tracing for details
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.
npm WARN deprecated apollo-cache-control@0.14.0: The functionality provided by the `apollo-cache-control` package is built in to `apollo-server-core` starting with Apollo Server 3. See https://www.apollographql.com/docs/apollo-server/migration/#cachecontrol for details.
npm WARN deprecated subscriptions-transport-ws@0.9.19: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
npm WARN deprecated graphql-tools@4.0.8: This package has been deprecated and now it only exports makeExecutableSchema.\nAnd it will no longer receive updates.\nWe recommend you to migrate to scoped packages such as @graphql-tools/schema, @graphql-tools/utils and etc.\nCheck out https://www.graphql-tools.com to learn what package you should use instead
added 890 packages in 46s
$ npm list --global
/home/mk/Application/node-v16.15.0-linux-x64/lib
├── @vue/cli@5.0.4
├── corepack@0.10.0
└── npm@8.5.5
mk@mk-virtual-machine:~$ npm root -g
/home/mk/Application/node-v16.15.0-linux-x64/lib/node_modules
mk@mk-virtual-machine:~$ ls -l /home/mk/Application/node-v16.15.0-linux-x64/lib/node_modules/
total 12
drwxr-xr-x 4 mk mk 4096 4月 27 06:15 corepack
drwxr-xr-x 8 mk mk 4096 4月 27 06:15 npm
drwxrwxr-x 3 mk mk 4096 5月 4 22:20 @vue
卸载
$ npm uninstall --global @vue/cli
removed 890 packages, and audited 1 package in 3s
found 0 vulnerabilities
$ npm list --global
/home/mk/Application/node-v16.15.0-linux-x64/lib
├── corepack@0.10.0
└── npm@8.5.5
xinjianxiangmu
参考
Ubuntu 20.04.3 LTS - 安装 Node.js v16.14.2
Vue CLI 安装
Vue CLI 创建一个项目