Quick Start Guide

Your 10-minute roadmap to Eiseniiaaaia development

Getting Started

This guide will walk you through creating your first Eiseniiaaaia project, including installation and running instructions.

๐Ÿ“ฆ

Install Dependencies

๐Ÿš€

Run Project

๐Ÿงช

Test Functionality

Installation Guide

1. Install CLI

$ npm install -g @eiseniiaaaia/cli

2. Create Project

$ eiseniia new my-app
$ cd my-app

3. Run Development Server

$ npm run dev

Your First App

import { h, render } from 'eiseniia';

const App = () => (
  h 'div' class="text-blue-500 text-4xl" [
    'Hello Eiseniiaaaia!'
  ]
);

render(App(), document.body);
Save as src/index.js and refresh your browser

You should see a blue "Hello Eiseniiaaaia!" message rendered in your browser

What Next?

Explore Core APIs

Dive into detailed documentation for essential framework functionality.

View APIs โ†’

Advanced Tutorials

Continue to advanced architecture patterns and state management techniques.

Next Tutorial โ†’