Installation
Docusaurus was designed from the ground up to be easily installed and used to get your website up and running quickly. To install Docusaurus, we have created an easy script that will get all of the infrastructure set up for you:
Asegúrese de tener la última versión de Node instalada. También recomendamos que instale Yarn también.
While we recommend Node 8.x or greater, your Node version must at least 6.x.
Go into the root of your GitHub repo directory where you will be creating the docs.
npx docusaurus-init
Si no tiene el Node 8.2+ o si prefiere instalar Docusaurus globalmente, ejecute
yarn global add docusaurus-init
onpm install --global docusaurus-init
. Después de eso, ejecutedocusaurus-init
.
After Docusaurus is installed, moving forward, you can check your current version of Docusaurus by going into the website
directory and typing yarn outdated docusaurus
or npm outdated docusaurus
. You can update to the latest version of Docusaurus by typing yarn upgrade docusaurus --latest
or npm update docusaurus
.
Verificar la instalación
Along with previously existing files and directories, your root directory will now contain a structure similar to:
root-of-repo
├── docs-examples-from-docusaurus
│ ├── doc1.md
│ ├── doc2.md
│ ├── doc3.md
│ ├── exampledoc4.md
│ └── exampledoc5.md
├── website
│ ├── blog-examples-from-docusaurus
│ │ ├── 2016-03-11-blog-post.md
│ │ └── 2017-04-10-blog-post-two.md
│ ├── core
│ │ └── Footer.js
│ ├── node_modules
│ ├── package.json
│ ├── pages
│ ├── sidebars.json
│ ├── siteConfig.js
│ └── static
Running the Docusaurus initialization script, docusaurus-init
, produces a runnable, example website to base your site upon.
- En su raíz, cambie el nombre de
docs-examples-from-docusaurus
adocs
. cd webiste
- Cambie el nombre de
blog-examples-from-docusaurus
ablog
. - Run the local webserver via
yarn start
ornpm start
. - Load the example site at http://localhost:3000. You should see the example site loaded in your web browser.