Documentation/Quick Start
Getting Started

Quick Start Guide

Get up and running with Aryxion in just a few minutes. This guide will walk you through the essential steps.

5 min readBeginner
Step 1

Create Your Account

Sign up for a Aryxion account to access all our products and services.

Step 2

Install Dependencies

Install the Aryxion SDK using npm, yarn, or pnpm.

npm install @darkaura/sdk
# or
yarn add @darkaura/sdk
# or
pnpm add @darkaura/sdk
Step 3

Initialize the Client

Import and initialize the Aryxion client with your API key.

import { DarkAuraClient } from '@darkaura/sdk';

const client = new DarkAuraClient({
  apiKey: process.env.DARKAURA_API_KEY,
  environment: 'production', // or 'development'
});
Step 4

Configure Your Project

Set up your project configuration and connect to Aryxion services.

// darkaura.config.js
module.exports = {
  projectId: 'your-project-id',
  region: 'us-east-1',
  features: {
    analytics: true,
    realtime: true,
    storage: true,
  },
};
Step 5

Start Building

You're all set! Start building amazing applications with Aryxion.

// Example: Create a new resource
const result = await client.resources.create({
  name: 'My First Resource',
  type: 'server',
  config: {
    size: 'medium',
    region: 'us-east-1',
  },
});

console.log('Resource created:', result.id);