---
title: Installation
description: Installation guide for our application.
date: 17-02-2025
---
Setting up DocuBook is straightforward, with options to clone the repository or use the convenient `npx` command. DocuBook requires [Node.js](https://nodejs.org/) version 18 or higher for optimal performance.
## Clone Repository
To get started, you can clone the DocuBook repository directly from GitHub.
Begin by cloning the DocuBook repository from GitHub:
```bash
git clone --branch starter https://gitlab.com/mywildancloud/docubook.git
```
After cloning, navigate into the project directory to start setting up:
```bash
cd docubook
```
Install all necessary project dependencies with npm:
```bash
npm install
```
Finally, start the development server to view the project locally:
```bash
npm run dev
```
## Quick Setup with CLI
For a faster setup, use the `cli` command to create a new DocuBook project in one step:
npm
pnpm
bun
yarn
```shell
npx @docubook/create@latest
```
```shell
pnpm dlx @docubook/create@latest
```
```shell
bunx @docubook/create@latest
```
```shell
yarn dlx @docubook/create@latest
```
With this setup, you’ll have a ready-to-use DocuBook instance to start building your documentation.