安装Yarn

Yarn 是为了弥补 npm 的一些缺陷而生的

具体参考:https://zhuanlan.zhihu.com/p/27449990

引导式安装

下载地址
使用Windows版的下载安装即可
image.png

bash安装

在bash里面不能显示,在bash里面下载
npm install -g yarn 即可

将 VuePress 安装为本地依赖

yarn init

yarn init 出错

  1. error An unexpected error occurred: "Can't answer a question unless a user TTY". info If you think t

使用cmd或者power shell不要使用bash

yarn add -D vuepress

image.png

创建一篇文章

在bash创建,在powershell里面创建会报错

  1. mkdir docs && echo '# Hello VuePress' > docs/README.md

image.png

添加脚本

  1. {
  2. "name": "my-site",
  3. "version": "1.0.0",
  4. "main": "index.js",
  5. "license": "MIT",
  6. "devDependencies": {
  7. "vuepress": "^1.7.1"
  8. },
  9. "scripts": {
  10. "docs:dev": "vuepress dev docs",
  11. "docs:build": "vuepress build docs"
  12. }
  13. }

运行

image.png
端口访问:http://localhost:8080/