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.

Hexo 是一个基于 Node.js 的快速、简洁且高效的博客框架。它使用 Markdown(或其他渲染器)解析文章,然后生成静态网页。

创建新博文

在博客目录下,运行以下命令来创建新博文:

1
hexo new "My_New_Post"

将在 source/_posts 目录下创建一个名为 My_New_Post.md 的 Markdown 文件

More info: Writing

编写博文

打开 source/_posts/My_New_Post.md 文件,在其中编写博文内容。一个基本的博文格式如下:

1
2
3
4
5
6
7
8
9
10
11
12
---
title: My_New_Post
date: 2024-01-01 00:00:00
tags:
- 标签1
- 标签2
categories:
- 分类1
author: Levi5
description: My_New_Post
---
这里是博文内容
  • title: 博文标题
  • date: 博文日期
  • tags: 博文标签,可选
  • categories: 博文分类,可选
  • author: 作者,可选
  • description: 博文描述,可选
  • 博文内容: Markdown 格式的正文内容

启动本地服务器

1
hexo server

或简写为:

1
hexo s

然后在浏览器中访问 http://localhost:4000 查看博文

More info: Server

生成静态文件

1
hexo generate

或简写为:

1
hexo g

More info: Generating

部署到远程服务器

1
hexo deploy

或简写为:

1
hexo d

More info: Deployment