Getting Started

Your first steps with EseNiitiiA. Learn to set up, configure, and perform initial operations.

🚀 Begin Tutorial

Step-by-Step Guide

Step 1: Installation

Set Up Your Environment

Begin by installing the EseNiitiiA CLI and SDK using the following commands:

npm install -g @eseniitiia/cli
esn init my-project
cd my-project
esn run dev

Step 2: Configuration

Configure Project

Create a configuration file to define your project settings:

{
  "project": {
    "name": "my-project",
    "port": 7071
  }
}

This will set your project name and development port.

Step 3: Run

Start Your Server

Use the CLI to run your project and verify it works:

esn run

Visit http://localhost:7071 to see your project in action.

Basic Example

Sample Code
const esn = require('eseniitiia');

esn.init({
  project: 'my-project',
  port: 7071,
});

esn.on('start', () => {
  console.log('🚀 EseNiitiiA is running!');
});

JavaScript example

What's Next?

Explore Advanced Features

Once you're set up, check out our advanced tutorial for custom workflows and integration strategies.

Advanced Tutorials →

Need Help?

Get instant guidance with our step-by-step documentation or reach out to our support team.

Contact Support →