安装go,nodes
安装hexo过程记录
环境配置
- Windows10
- Go
- Nodejs
- Git
- Hexo
为了方便简单,都是选择 exe 或者 msi 格式的安装环境配置
开始使用
因为网络经常连不上 Github 所以要给 git 加个 Clash 代理,例如我们只需代理 Github 即可,CMD 命令如下(假如你的 Clash 端口号是1080):
git config --global http.https://github.com.proxy http://127.0.0.1:1080
git config --global https.https://github.com.proxy https://127.0.0.1:1080
安装 Hexo
所有必备的应用程序安装完成后,即可使用 npm 安装 Hexo。
$ npm install -g hexo-cli
创建hexo目录
在你电脑创建一个目录存放 Hexo 的文件
在这个目录,右键鼠标选择 Git Bash here 打开 Git 工具
创建目录
hexo init <folder>
进入目录
cd <folder>
安装 Hexo
npm install
新建完成后,指定文件夹的目录如下:
.
├── _config.yml
├── package.json
├── scaffolds
├── source
| ├── _drafts
| └── _posts
└── themes