# 开始
提示
基于 vuepress 2.x 教程,帮助开发者快速上手。详细请参考vuepress官方教程 (opens new window)
# 手动安装
- 创建并进入一个新目录
mkdir vuepress-demo
cd vuepress-demo
1
2
2
- 初始化项目
npm init
1
- 安装本地开发依赖
npm install -D vuepress@next
1
- 在
package.json
中添加一些scripts
{
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
}
}
1
2
3
4
5
6
2
3
4
5
6
- 创建你的第一篇文档
- 新建
docs
文件夹 - 在
docs
文件夹下新建README.md
文件,内容如下:
# vueper 标题
1
- 运行
npm run docs:dev
1
VuePress 会在 http://localhost:8080 (opens new window) 启动一个热重载的开发服务器。当你修改你的 Markdown 文件时,浏览器中的内容也会自动更新。