Turn web apps into real APKs.

Convert HTML, CSS, and JS into a native Android APK in seconds.
Zero Android Studio. Zero Gradle. Zero Java knowledge.

The Pain of Mobile Dev

Why we built Nitron.

🐘

Android Studio

Requires 8GB+ RAM, massive Gradle downloads, complex JDK configurations, and learning native toolchains just to wrap a webview.

🐢

Cordova / Capacitor

They claim "web-first" but still force you to install Android SDKs and wait minutes for Gradle builds every time you compile.

📱

PWAs

Great for the web, but you can't upload a PWA directly to Google Play. Users prefer installing real apps from the store.

How It Works

An elegant 8-step pipeline, running entirely in Node.js.

Comparison

See how Nitron stacks up.

Feature Nitron Capacitor Cordova PWA
Needs Android Studio ❌ Never ✅ Always ✅ Always
Needs Gradle ❌ Never ✅ Always ✅ Always
npm-only workflow ✅ Yes ❌ No ❌ No ✅ Yes
Real APK output ✅ Yes ✅ Yes ✅ Yes ❌ No
Build time ~2 Seconds Minutes Minutes

Quick Start

Get your APK in under 60 seconds.

1. Scaffold a new project:

npx nitron init my-app
cd my-app

2. Preview locally with live-reload:

npm run dev

3. Generate your APK:

npm run build

Configuration

Everything is configured in a simple app.js file.

import { app } from 'nitron'

app.init({
  name: "My App",
  packageId: "com.example.app",
  version: "1.0.0",
  entry: "index.html",
  orientation: "portrait",
  permissions: ["INTERNET"]
})

Requirements

Nitron keeps your system clean.