Documentation

Master the most powerful AI code editor built for mobile. Learn how to manage projects, use the terminal, and leverage AI to build anywhere.

For Learners

Start coding HTML/CSS instantly with no complex setup required.

For Professionals

Full Git integration, custom terminal, and AI pair programming.

Supported Languages

Robust support for industry-standard technologies and modern frameworks.

HTML5
CSS3 / Tailwind
JavaScript
TypeScript
Node.js
PHP

Installation & Setup

1

Download the App

Android Notice

The Android version is currently outdated, while we rebuild the engine. We recommend iOS for the latest features and updated changes.

Terminal & Git

A native Unix-like shell powered by a custom environment.

zsh — 80x24
$ git clone https://github.com/user/web-project.git
Cloning into 'web-project'...
remote: Enumerating objects: 42, done.
$

Loading Git Guide...

Creating Projects

Isolated environments for every project. Create from scratch or use high-performance templates.

MyProject/
index.html
style.css
script.js

Deployment & Publishing

Launch your projects to the web instantly using our built-in Netlify integration.

Deploy to Netlify

Production-ready static hosting

1

Generate Access Token (Free Plan)

If you are on the Free plan and using a custom key, log in to Netlify to generate your Personal Access Token:

User Settings Applications New Access Token
2

Initiate Deployment

In the File Explorer, long-press your target project folder to open the context menu. Select Publish from the list of actions.

3

Authentication & Build

Pro Users: Deployment is automatic and instant using the app's integrated credentials.

Free Users: Your first deployment is complimentary. For subsequent updates, you will be prompted to either upgrade to Pro or enter the custom Access Token generated in Step 1.

Once verified, your site will build automatically. You will receive a live URL immediately upon completion.

Backend Security Best Practices

Security is not an afterthought. Protect your application, user data, and infrastructure by following these industry-standard best practices.

The Frontend is Public

Client-side code (HTML, CSS, JS) is downloaded to the user's browser. Never store API keys, database passwords, or secret logic in your frontend files. Anyone can View Source to steal them.

❌ const API_KEY = "sk_123...";

The "Car Keys" Rule

Think of your .env file like car keys. You need them to start the engine, but you never leave them inside the car when parking in public.

Local

Keep keys in your local .env file.

Deployment

Do not upload the file. Copy the content and paste it into your hosting dashboard's "Environment Variables" section.

Proxy Architecture

Don't call sensitive APIs from the browser. Send requests to your own backend (Middleman), which adds the secret key and forwards the request.

Frontend calls Backend
Backend calls API

Security Checklist

Sanitize User Input

Validate all data on the server to prevent SQL Injection and XSS.

Use RLS (Row Level Security)

For BaaS like Supabase, ensure users can only query their own data rows.

Automatic Git Shielding

Web IDE automatically prevents .env files from being pushed to GitHub. You do not need to manually configure .gitignore.

Use JWT for Auth

Implement stateless authentication using JSON Web Tokens.