hexo deploy nodejs

WBOY
Release: 2023-05-17 09:58:06
Original
487 people have browsed it

Hexo is a static website generator based on Node.js. It can help users easily create personal blogs, work display websites, etc. To deploy a Hexo website is to upload the generated static web pages to the server for access. This article will introduce how to use Node.js to deploy Hexo website.

1. Preparation

Before starting the deployment, please ensure that Node.js and Hexo have been installed:

  1. Install Node.js

Node.js can be downloaded and installed from the official website, or you can install it directly using the package manager. Choose the appropriate installation method according to your operating system.

  1. Install Hexo

Open the command line tool and enter the following command to install Hexo:

npm install -g hexo-cli
Copy after login

After the installation is completed, you can test whether the installation is successful by using the following command :

hexo -v
Copy after login

2. Generate static web pages

Before generating static web pages, you need to initialize the blog through Hexo:

hexo init blog
cd blog
npm install
Copy after login

Hexo will automatically create a directory structure and some default configuration files .

After the initialization is completed, you can use the following command to generate a static web page:

hexo generate
Copy after login

After the generation is successful, the generated file is stored in the ./public directory.

3. Deploy to the server

Next, the generated static web page needs to be deployed to the server. Below we introduce two common deployment methods.

1. Use FTP to upload

First you need to log in to the FTP server, open the ./public directory locally, and upload all the files in it to the server. After the upload is completed, you can access the corresponding website address through the browser to view the deployed website.

2. Deploy using Git

Git is a distributed version control tool that can also be used as a deployment tool. Install Git on the server and create a warehouse, and use Git locally to push the generated static web pages to the server warehouse.

First, install Git on the server:

sudo apt-get install git
Copy after login

Secondly, create an empty directory as a Git repository:

mkdir myblog.git
cd myblog.git
git init --bare
Copy after login

After the initialization is completed, you need to associate it locally with the newly created Empty directory:

git remote add origin ssh://user@domain.com/path/to/myblog.git
Copy after login

Among them, user is the server user name, domain.com is the server address, and /path/to/myblog.git is the absolute path of the Git warehouse.

After the association is completed, use the following command to push the code to the server warehouse:

git add .
git commit -m "Initial Commit"
git push origin master
Copy after login

After the push is completed, install Nginx, Apache or other web servers on the server, and specify the website directory to be generated The ./public directory where the static web page is located can be used to access the deployed Hexo website through the website address on the browser.

Conclusion

The above are the steps to use Node.js to deploy the Hexo website. Through the introduction of this article, I believe that everyone has a deeper understanding of the deployment of the Hexo website, and can also use Node.js to complete the deployment of the website more skillfully.

The above is the detailed content of hexo deploy nodejs. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!