# 开始

提示

基于 vuepress 2.x 教程,帮助开发者快速上手。详细请参考vuepress官方教程 (opens new window)

# 手动安装

  1. 创建并进入一个新目录
mkdir vuepress-demo
cd vuepress-demo
1
2
  1. 初始化项目
npm init
1
  1. 安装本地开发依赖
npm install -D vuepress@next
1
  1. package.json 中添加一些 scripts
{
  "scripts": {
    "docs:dev": "vuepress dev docs",
    "docs:build": "vuepress build docs"
  }
}
1
2
3
4
5
6
  1. 创建你的第一篇文档
  • 新建 docs 文件夹
  • docs 文件夹下新建 README.md 文件,内容如下:
# vueper 标题
1
  1. 运行
npm run docs:dev
1

VuePress 会在 http://localhost:8080 (opens new window) 启动一个热重载的开发服务器。当你修改你的 Markdown 文件时,浏览器中的内容也会自动更新。