vue安装与nodejs命令

常用命令

1.npm install express
2.npm uninstall express
3.查看包 npm ls
4.使用npm update 可以把当前目录下node_modules子目录里边的对应模块更新至最新版本。
5.npm cache clear可以清空NPM本地缓存
6.使用npm help 可查看某条命令的详细帮助,例如npm help install。
使用淘宝npm镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install [name]

安装报错

1.解决使用npm安装vue时报"no such file or directory, open ‘xxx\package.json’"问题
到F:\front-tools\nodejs\node_modules\npm目录下运行
nmp install express
会在F:\front-tools\nodejs\node_modules\express找到
2.解决nmp audit fix报错
found 2504 vulnerabilities (1360 low, 1109 moderate, 29 high, 6 critical)
run npm audit fix to fix them, or npm audit for details

  npm ERR! audit No package.json found: Cannot audit a project without a package.json

发现是没有json文件的问题解决
npm init --yes
造一个完事

你可能感兴趣的:(java,vue.js,npm,javascript)