Convert HTML, CSS, and JS into a native Android APK in seconds.
Zero Android Studio. Zero Gradle. Zero Java knowledge.
Why we built Nitron.
Requires 8GB+ RAM, massive Gradle downloads, complex JDK configurations, and learning native toolchains just to wrap a webview.
They claim "web-first" but still force you to install Android SDKs and wait minutes for Gradle builds every time you compile.
Great for the web, but you can't upload a PWA directly to Google Play. Users prefer installing real apps from the store.
An elegant 8-step pipeline, running entirely in Node.js.
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 | — |
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
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"]
})
Nitron keeps your system clean.