|
hexo相关信息
安装hexo加上-g全局安装
如果报错:
- zsh: command not found: npm
复制代码 有可能是zsh配置问题或者没有安装node.假设是配置问题.
- source /Users/YOUUSERNAME/.bash_profile
复制代码 把上面这么代码添加到~/.zshrc这么修改还不行那很可能是没有安装node了
- ➜ ~ node -v
- zsh: command not found: node
- ➜ ~ npm -v
- zsh: command not found: npm
复制代码 brew安装node
测试
- ➜ ~ node -v
- v15.6.0
- ➜ ~ -v
- 7.4.0
复制代码 安装hexo包
hexo命令:
hexo g #渲染
hexo clean # 清除hexo内存
hexo s # hexo启动,加上--debug可以debug hexo启动出错的原因
hexo server #启动hexo服务,在本地浏览器预览效果.
hexo new a #新建一个页面
hexo draft b #新建草稿
hexo RSS
安装插件命令
- npm install hexo-generator-feed --save
复制代码
hexo tag
- title: 标签测试文章
- tags:
- - Testing
- - Another Tag
复制代码
本地预览网站效果
部署到vps上
清除已生成的静态文件
|
|