Getting Started: Basics

Welcome

This guide introduces the core concepts you need to begin building with our platform. We'll walk through setting up, core terminology, and a simple example.

1. Installation

Download the latest release from our website or install via the package manager:

npm install my-platform --save

2. Your First Example

Create a file app.js with the following content:

import { initialize } from 'my-platform';

const app = initialize({
    apiKey: 'YOUR_API_KEY',
    debug: true
});

app.run();

Run it with:

node app.js

3. Next Steps