Welcome to the Hexo documentation. ยินดีต้อนรับเข้าสู่ documentation ของ hexo ถ้าคุณพบเจอปัญหาใดๆเวลาใช้ hexo ไปดูข้อมูลได้ท่ี troubleshooting guide ไปเสนอ issue ได้ที่ GitHub หรือไปเปิด topic ได้ท่ี Google Group
What is Hexo?
Hexo is a fast, simple and powerful blog framework. hexo เป็นกรอบบล็อกท่ีรวดเร็ว เรียบง่ายและมีประสิทธิภาพ คุณเขียนโพสต์ได้ด้วยภาษา [Markdown](http://daringfireball .net/projects/markdown/)(หรือภาษาอื่นๆ) และ hexo จะ generate ไฟล์คงที่ท่ีประกอบด้วยธีมสวยงามภายในเวลาไม่กี่วินาที
Installation
It only takes a few minutes to set up Hexo. If you encounter a problem and can’t find the solution here, please submit a GitHub issue and we’ll help.
Requirements
การติดตั้ง hexo เป็นเรื่องง่ายๆ แต่คุณต้องการติดตั้งบางสิ่งก่อน:
If your computer already has these, congratulations! You can skip to the Hexo installation step.
ถ้าคุณยังไม่ได้ติดตั้งสองสิ่งนี้ กรุณาปฏิบัติตามวิธีการใช้เพื่อติดตั้งทุกสิ่งท่ีต้องการ
Install Git
- Windows: ดาวน์โหลด & ติดตั้ง git.
- Mac: ติดตั้งด้วย Homebrew, [MacPorts] (http://www.macports.org/) หรือ [installer](http://sourceforge .net/projects/git-osx-installer/).
- Linux (Ubuntu, Debian):
sudo apt-get install git-core
- Linux (Fedora, Red Hat, CentOS):
sudo yum install git-core
For Mac usersYou may encounter some problems when compiling. Please install Xcode from App Store first. คุณอาจจะพบปัญหาบ้างเมื่อ compiling กรุณาติดตั้ง Xcode จาก App Store ก่อน เสร็จแล้วค่อยไปเปิด Xcode และ ไปถึง Preferences -> Download -> Command Line Tools -> Install เพื่อติดตั้งเครื่องมือคำสั่ง
Install Node.js
Node.js provides official installer for most platforms.
Alternative installation methods:
- Windows: Install it with nvs (recommended) or nvm.
- Mac: Install it with Homebrew or MacPorts.
- Linux (DEB/RPM-based): Install it with NodeSource.
- Others: Install it through respective package manager. Refer to the guide provided by Node.js.
nvs is also recommended for Mac and Linux to avoid possible permission issue.
WindowsIf you use the official installer, make sure Add to PATH is checked (it’s checked by default).
Mac / LinuxIf you encounter
EACCES
permission error when trying to install Hexo, please follow the workaround provided by npmjs; overriding with root/sudo is highly discouraged.
LinuxIf you installed Node.js using Snap, you may need to manually run
npm install
in the target folder when initializing a blog.
Install Hexo
เมื่อความต้องการทุกอย่างได้ติดตั้งเรียบร้อยแล้ว คุณสามารถติดตั้ง hexo ด้วย npm
$ npm install -g hexo-cli |
Advanced installation and usage
Advanced users may prefer to install and use hexo
package instead.
$ npm install hexo |
ถ้าคุณติดตั้งสองสิ่งนี้อยู่แล้วในคอม ขอแสดงความยินดี คุณจะติดตั้ง hexo ด้วย npm ได้อย่างนี้:
npx hexo <command>
- Linux users can set relative path of
node_modules/
folder:
echo 'PATH="$PATH:./node_modules/.bin"' >> ~/.profile |
then run Hexo using hexo <command>
Required Node.js version
If you are stuck with older Node.js, you can consider installing a past version of Hexo.
Please note we do not provide bugfixes to past versions of Hexo.
We highly recommend to always install the latest version of Hexo and the recommended version of Node.js, whenever possible.
Hexo version | Minimum (Node.js version) | Less than (Node.js version) |
---|---|---|
7.0+ | 14.0.0 | latest |
6.2+ | 12.13.0 | latest |
6.0+ | 12.13.0 | 18.5.0 |
5.0+ | 10.13.0 | 12.0.0 |
4.1 - 4.2 | 8.10 | 10.0.0 |
4.0 | 8.6 | 8.10.0 |
3.3 - 3.9 | 6.9 | 8.0.0 |
3.2 - 3.3 | 0.12 | unknown |
3.0 - 3.1 | 0.10 or iojs | unknown |
0.0.1 - 2.8 | 0.10 | unknown |