新电脑 安装 node.js hexo

换了台新电脑,发现博客无法打包,需要安装 node.js 再安装 hexo。

安装 node.js

去这里 https://nodejs.cn/download/ 下载 win 版,再安装

配置 npm

配置npm的全局安装路径 npm config set prefix “D:\nodejs\node_global”

设置npm的缓存路径 npm config set cache “E:\nodejs\node_cache”

配置环境变量 Alt text

Alt text

设置npm使用的软件仓库地址 npm config set registry http://registry.npm.taobao.org

安装 cnpm npm install -g cnpm

Alt text

安装 hexo

cnpm install -g hexo-cli

Alt text

测试 hexo

进入我之前写 hexo 博客的路径

hexo clean hexo g hexo s -p 5000

搞定

Alt text

|