使用Hexo搭建Blog
记录创建My Blog的过程,积累经验,避免下次踩坑 一.下载node.js 下载安装 Node.js 配置node环境变量 自定义node_modules位置:在目标路径下分别创建node_global和node_cache文件夹,前者是 npm install xx -g全局包安装位置可以被其他项目共享,后者安装npm install xx,不能被全部项目共享 打开cmd或者powershell分别配置以上两个路径 1npm config set prefix [node_global路径] 1npm config set cache [node_cache路径] 配置用户变量Path,将Path变量npm的默认路径更改成创建好的node_global的路径 测试: 1npm install express -g 二.安装Hexo框架Hexo官网 Hexo.io 下载安装1npm install hexo-cli -g 初始化博客目录,目录名称为 myblog1hexo init myblog 进入myblog1cd myblog 下载依赖 生成...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment