nodejs项目的配置
### 项目初始化 (需要什么就写什么 不是每次都要初始化的)
`npm init` `自定义初始化`
`npm init -y` `默认生成` 一般使用 -y 的时候比较多
### 安装项目依赖(包) `npm install` `npm install 包名 --save` `当前项目可用` `npm install 包名 -g` `全局所有项目都可用` -g:全局安装 、--save:保存 `下面最后可加 --save/-g,代表删除当前还是全部` `npm install 包名@版本号` `安装指令,没有版本号,装的是最新的` `npm install 包名@1.0.0` `指版本号` ###更新
`npm update ...` `update后面跟哪个包` ###删除 `npm uninstall 包名` `卸载 删除当前的` `npm uninstall 包名 -g` `删除全局` npm uninstall nodemon :uninstall卸载 开发环境的配置:
npm config get registry -->获取地址
PS C:\Windows\system32> node -v
v14.18.1
PS C:\Windows\system32> npm -v
6.14.15
PS C:\Windows\system32> npm config set registry https://registry.npm.taobao.org/ 设置地址为淘宝地址
package name 包名
npm :是包管理器
node_modules:包:实时刷新
项目不建议 文件夹命名有空格
凡是识别不了 node -v 和 npm -v (未识别什么函数的)
设置中找-编辑环境变量-找node 把地址放进去
`npm init` `自定义初始化`
`npm init -y` `默认生成` 一般使用 -y 的时候比较多
### 安装项目依赖(包) `npm install` `npm install 包名 --save` `当前项目可用` `npm install 包名 -g` `全局所有项目都可用` -g:全局安装 、--save:保存 `下面最后可加 --save/-g,代表删除当前还是全部` `npm install 包名@版本号` `安装指令,没有版本号,装的是最新的` `npm install 包名@1.0.0` `指版本号` ###更新
`npm update ...` `update后面跟哪个包` ###删除 `npm uninstall 包名` `卸载 删除当前的` `npm uninstall 包名 -g` `删除全局` npm uninstall nodemon :uninstall卸载 开发环境的配置:
npm config get registry -->获取地址
PS C:\Windows\system32> node -v
v14.18.1
PS C:\Windows\system32> npm -v
6.14.15
PS C:\Windows\system32> npm config set registry https://registry.npm.taobao.org/ 设置地址为淘宝地址
package name 包名
npm :是包管理器
node_modules:包:实时刷新
项目不建议 文件夹命名有空格
凡是识别不了 node -v 和 npm -v (未识别什么函数的)
设置中找-编辑环境变量-找node 把地址放进去