As Easy as 1, 2, 3
# install in your project
yarn add -D vuepress@next
# create a markdown file
echo '# Hello VuePress' > README.md
# start writing
yarn vuepress dev
# build to static files
yarn vuepress build
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
# install in your project
npm install -D vuepress@next
# create a markdown file
echo '# Hello VuePress' > README.md
# start writing
npx vuepress dev
# build to static files
npx vuepress build
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11