[windows篇] 使用Hexo建立个人博客,自定义域名https加密,搜索引擎google,baidu,360收录

2021-03-21 11:27

阅读:450

标签:art   arch   --   logs   https加密   链接   oba   索引   count   

为了更好的阅读体验,欢迎阅读原文。原文链接在此。

Part 2: Using Github Pages and Hexo to manage personal blogs on windows.

Series

  • Part 1: Using Github Pages and Hexo to manage personal blogs on Ubuntu.
  • Part 2: Using Github Pages and Hexo to manage personal blogs on windows.

Guide

install node

wget https://nodejs.org/dist/v8.9.4/node-v8.9.4-x64.msi

start node installer and install node,npm to windows.

node -v 
v8.9.4

npm -v 
5.6.0

install hexo global

npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install -g hexo-cli

clone/create your blog

git clone git@xxxx/blog.git 
# or create your blog

install hexo packages

cd blog 
ls package.json

package.json

{
  "name": "hexo-site",
  "version": "0.0.0",
  "private": true,
  "hexo": {
    "version": "3.4.4"
  },
  "dependencies": {
    "hexo": "^3.4.4",
    "hexo-abbrlink": "^2.0.5",
    "hexo-admin": "^2.3.0",
    "hexo-deployer-git": "^0.3.1",
    "hexo-generator-archive": "^0.1.5",
    "hexo-generator-baidu-sitemap": "^0.1.2",
    "hexo-generator-category": "^0.1.3",
    "hexo-generator-feed": "^1.2.2",
    "hexo-generator-index": "^0.2.1",
    "hexo-generator-search": "^2.1.1",
    "hexo-generator-searchdb": "^1.0.8",
    "hexo-generator-sitemap": "^1.2.0",
    "hexo-generator-tag": "^0.2.0",
    "hexo-neat": "^1.0.4",
    "hexo-renderer-ejs": "^0.3.1",
    "hexo-renderer-marked": "^0.3.0",
    "hexo-renderer-stylus": "^0.3.3",
    "hexo-server": "^0.3.0",
    "hexo-wordcount": "^3.0.2"
  }
}

install packages

cnpm install --save
cnpm update --save

start hexo

hexo server

and visit

  • http://localhost:4000/ for view site;
  • http://localhost:4000/admin for writing posts.

Reference

  • Part 1: Using Github Pages and Hexo to manage personal blogs on Ubuntu.

History

  • 20180122: created.

Copyright

  • Post author: kezunlin
  • Post link: https://kezunlin.me/post/41448ed1/
  • Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 3.0 unless stating additionally.

[windows篇] 使用Hexo建立个人博客,自定义域名https加密,搜索引擎google,baidu,360收录

标签:art   arch   --   logs   https加密   链接   oba   索引   count   

原文地址:https://www.cnblogs.com/hellogiser/p/11821009.html


评论


亲,登录后才可以留言!