下载并安装
nodejs下载地址: https://nodejs.org/download/release/v12.22.12/
配置环境变量
在path中添加nodejs的根目录,根据本机路径进行配置
1
| D:\node-v12.22.12-win-x64
|
查看版本号
配置缓存的环境变量
在path中添加路径,是追加路径
1
| D:\node-v12.22.12-win-x64\node_global
|
在系统变量新建NODE_PATH
1
| D:\node-v12.22.12-win-x64\node_global\node_modules
|
配置npm在安装全局模块时的路径和缓存cache的路径
下载的包都保存下面的路径中
1 2
| npm config set prefix "D:\node-v12.22.12-win-x64\node_global" npm config set cache "D:\node-v12.22.12-win-x64\node_cache"
|
配置镜像
1
| npm config set registry https://registry.npm.taobao.org/
|
配置后测试
在cmd命令下执行
格式:npm install 包名称 –save
1 2 3 4 5 6 7 8 9 10
| npm install -g hexo #-g表示是全局安装 npm install -save hexo #-save将模块安装到项目目录下,并在package文件的dependencies节点写入依赖。 npm install -save-dev hexo #-save-dev是将模块安装到项目目录下,并在package文件的devDependencies节点写入依赖。 hexo version npm i 或 npm install #就能自动安装项目用到的依赖包。 npm install hexo-deployer-git -save git config --global user.email "277808238@qq.com" git config --global user.name "skyboy" hexo clean && hexo g && hexo d hexo clean && hexo g && hexo s
|