# vuepress-notes **Repository Path**: qqwu-hao/vuepress-note-v2 ## Basic Information - **Project Name**: vuepress-notes - **Description**: vupress学习笔记 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-07 - **Last Updated**: 2023-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README --- home: true title: Home heroImage: /images/hero.png actions: - text: Get Started link: /guide/getting-started.html type: primary - text: Introduction link: /guide/ type: secondary features: - title: Simplicity First details: Minimal setup with markdown-centered project structure helps you focus on writing. - title: Vue-Powered details: Enjoy the dev experience of Vue, use Vue components in markdown, and develop custom themes with Vue. - title: Performant details: VuePress generates pre-rendered static HTML for each page, and runs as an SPA once a page is loaded. - title: Themes details: Providing a default theme out of the box. You can also choose a community theme or create your own one. - title: Plugins details: Flexible plugin API, allowing plugins to provide lots of plug-and-play features for your site. - title: Bundlers details: Default bundler is Vite, while Webpack is also supported. Choose the one you like! footer: MIT Licensed | Copyright © 2018-present Evan You --- ### As Easy as 1, 2, 3 ```bash # 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 ``` ```bash # 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 ```