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 Start Create a new post 1$ hexo new "My New Post" More info: Writing Run server 1$ hexo server More info: Server Generate static files 1$ hexo generate More info: Generating Deploy to remote sites 1$ hexo deploy More info: Deployment
Hexo博客部署记录
Hexo博客部署记录 Hexo是一个基于Node.js的静态网站生成器,主要用于创建博客和文档网站。 一、安装环境 已经6202年了,推荐 scoop 安装。 nodejs官网 https://nodejs.org/zh-cn git官网 https://git-scm.com/ 验证 1234node -vnpm -vpnpm -vgit --version 1234567891011node -vv24.15.0npm -v11.12.1pnpm -v10.33.2git --versiongit version 2.54.0.windows.1 二、安装Hexo 全局安装Hexo 1npm install -g hexo-cli 初始化站点 12hexo init www.bravexist.cncd www.bravexist.cn 安装依赖 1pnpm install 三、生成静态文件并启动本地服务器 清理旧文件 1hexo clean 生成静态文件,可简写 hexo g 1hexo generate 启动预览,默认 http://...







