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 โ