Skip to main content

Installation

Quick Start 

The fastest way to get started with Robindoc is using create-robindoc-app:

npx
pnpm
yarn
bun
npx create-robindoc-app
pnpm create robindoc-app
yarn create robindoc-app
bun create robindoc-app

This will bootstrap a minimal Next.js app with Robindoc already configured.

Manual Installation 

Robindoc is simply a helper framework, meaning it does not include React itself or its frameworks.

If you do not yet have an application, initialize it according to the Next.js guide .

Install the robindoc package in your project:

npm
pnpm
yarn
bun
npm i robindoc
pnpm add robindoc
yarn add robindoc
bun add robindoc

If you're using Next.js, you should also install the @robindoc/next integration package:

npm
pnpm
yarn
bun
npm i @robindoc/next
pnpm add @robindoc/next
yarn add @robindoc/next
bun add @robindoc/next

For Next.js applications, see the Next.js Integration guide for setup instructions.

Now you can fully integrate it into your application by initializing Robindoc guide.

Getting StartedWriting MD
Return to navigation