Arkpad
Getting Started

Installation

Set up Arkpad in your project with minimal configuration.

Prerequisites

  • Node.js LTS (v20 or higher)
  • npm, pnpm, or bun
  • Git

Installing the Packages

npm install @arkpad/react @arkpad/core

Vanilla JavaScript

npm install @arkpad/core

Project Setup

1. Clone the Repository

git clone https://github.com/arkcabin/arkpad.git
cd arkpad

2. Install Dependencies

npm install

3. Run Development Server

npm run dev

This starts the demo app at http://localhost:5173.

Available Scripts

CommandDescription
npm run devStart local development app
npm run buildCompile all packages and app
npm run testRun automated tests
npm run test:allRun core + extension tests
npm run lintRun ESLint
npm run typecheckRun TypeScript checks
npm run formatFormat code with Prettier

Environment Checklist

  • Correct Node version installed (v20+)
  • Package manager available
  • Dependencies installed successfully
  • Tests pass locally (npm run test)