Installation
Installation guide for our application.
Setting up DarkUI is straightforward, with options to clone the repository or use the convenient npx
command. DarkUI requires Node.js version 18 or higher for optimal performance.
Clone Repository
To get started, you can clone the DarkUI repository directly from GitHub.
Step 1: Clone the DarkUI Repository
Begin by cloning the DarkUI repository from GitHub:
git clone https://github.com/nisabmohd/Aria-Docs.git
Step 2: Access the Project Directory
After cloning, navigate into the project directory to start setting up:
cd Aria-Docs
Step 3: Install Required Dependencies
Install all necessary project dependencies with npm:
Remember:
To support React 19, package maintainers will need to test and update their packages to include React 19 as a peer dependency. This is already in progress.
npm install
Step 4: Launch the Development Server
Finally, start the development server to view the project locally:
npm run dev
Quick Setup with npx
For a faster setup, use the npx
command to create a new DarkUI project in one step:
npx create-aria-doc <project-directory>
Command Output:
Creating a new DarkUI project in /path/to/your/project from the master branch...
Cloning Master (Full Documentation)...
DarkUI project successfully created in /path/to/your/project!
Next steps:
1. Navigate to your project directory:
cd <project-directory>
2. Install dependencies:
npm install
3. Start the development server:
npm run dev
With this setup, you’ll have a ready-to-use DarkUI instance to start building your documentation.