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
Blog Init
Hexo博客搭建一、前期准备 GitHub账户 Node.js Git Hexo安装 检验是否安装成功123git --versionnode -vnpm -v Hexo安装 新建一个文件夹,自己重命名文件夹(如:E\Blog),博客相关文件将储存在此文件夹下 在该文件夹下右键鼠标,点击 Git Bash Here,输入以下 npm 命令即可安装 1npm install hexo-cli -g Hexo 初始化配置 123npx hexo init blogcd blognpm install hexo-deployer-git --save source 文件夹:源码,未被Hexo渲染的md文件,写的文章就在这里面 themes 文件夹:主题,安装的主题都在这 _config.yml:Hexo配置文件 本地查看效果执行完以下命令即可登录 http://localhost:4000/ 查看效果 (尝试在命令的前面加上npx) 12hexo generatehexo server 二、为博客更换自己喜欢的主题 butterfly...