Your First App

Create and deploy your first application using our platform. From setup to launch in under 10 minutes.

🔗 Getting Started Guide

Step 1: Create a New Project

Start by creating a new project in your Eseniiiav workspace. Navigate to Projects > New Project and select an empty template.

es-cli create-project new-app

Next Step âž”

Step 2: Configure Your App Settings

Open the project settings by clicking the gear icon. Here, you’ll configure the app name, domain, and basic permissions.

"name": "New App",
"domain": "yourapp.eseniiiav.io",
"permissions": ["public:read", "user:write"]

Next Step âž”

Step 3: Write Your First Code

Create a new file named main.js and add the following code snippet.

function helloWorld(name) {
  return `Hello, ${name}!`;
}

exports.helloWorld = helloWorld;

Next Step âž”

Step 4: Test Your Function

Click the "Test" button in the top menu. Input parameters to execute your function.

Input: { "name": "Alice" }
Output: "Hello, Alice!"

Next Step âž”

Step 5: Deploy Your App

Select your deployment environment and click the Deploy button. Your app will be live within seconds.

✨ Deployment successful! Access your app at:
https://yourapp.eseniiiav.io

Try It Yourself

What's Next?

Explore advanced features or learn how to integrate third-party services with your app.

Advanced Features