
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
lumora-cli
Advanced tools
Lumora CLI - Expo-like development experience for Flutter
npm install -g @lumora/cli
# Create new project
lumora init my-app
# Start development server
cd my-app
lumora start
# Scan QR code with Lumora Dev Client
# Edit code and see changes instantly!
lumora startStart the Lumora development server with automatic updates.
lumora start [options]
Options:
-p, --port <port> Port for Dev-Proxy server (default: 3000)
-m, --mode <mode> Development mode: react, flutter, or universal (default: universal)
--no-qr Disable QR code display
--no-watch Disable file watching
--no-codegen Disable automatic code generation
--web-only Only start web server (no mobile)
What it does:
Example:
# Start with default settings
lumora start
# Start on custom port
lumora start --port 8080
# Start in React-first mode
lumora start --mode react
# Start without code generation
lumora start --no-codegen
lumora initCreate a new Lumora project.
lumora init <project-name> [options]
Options:
-t, --template <template> Project template (default: default)
Example:
lumora init my-awesome-app
cd my-awesome-app
npm install
lumora start
lumora buildBuild production Flutter app.
lumora build [options]
Options:
--platform <platform> Platform: android, ios, or both (default: both)
--release Build release version (default: true)
Example:
# Build for both platforms
lumora build
# Build Android only
lumora build --platform android
# Build iOS only
lumora build --platform ios
Create a lumora.config.js file in your project root:
module.exports = {
// Watch directory
watchDir: 'web/src',
// React source directory
reactDir: 'web/src',
// Flutter output directory
flutterDir: 'mobile/lib',
// IR storage directory
storageDir: '.lumora/ir',
// Dev-Proxy port
port: 3000,
// Development mode
mode: 'universal', // 'react', 'flutter', or 'universal'
// Auto-convert on file change
autoConvert: true,
// Auto-push to device
autoPush: true,
// Generate production code
generateCode: true,
};
# 1. Start Lumora
$ lumora start
🚀 Starting Lumora...
✓ Dev-Proxy started on http://localhost:3000
✓ Watching: web/src
┌────────────────────────────────────┐
│ █▀▀▀▀▀█ ▀▀█▄ ▀ ▄▀█ █▀▀▀▀▀█ │
│ █ ███ █ ▄▀▀█▀▄█▀ █ ███ █ │
│ █ ▀▀▀ █ █▀ ▀▄ ▀█▄ █ ▀▀▀ █ │
│ ▀▀▀▀▀▀▀ █▄▀ ▀ █ ▀ ▀▀▀▀▀▀▀ │
│ Scan with Lumora Dev Client │
└────────────────────────────────────┘
Ready! Edit your code and watch the magic happen! ✨
# 2. Scan QR code with Lumora Dev Client
# 3. Edit your code
$ vim web/src/App.tsx
# 4. Save file (Ctrl+S)
# 5. Device updates automatically!
[12:34:56] 📝 File changed: App.tsx
✓ Schema generated
✓ Pushed to device
⚡ Update completed in 234ms
# Generate production Dart code
$ lumora start --mode universal
# Code is automatically generated in mobile/lib/
# Build production app
$ lumora build
# Deploy to app stores
$ cd mobile
$ flutter build apk --release # Android
$ flutter build ios --release # iOS
| Feature | React Native Expo | Lumora |
|---|---|---|
| Start Command | expo start | lumora start |
| Client App | Expo Go | Lumora Dev Client |
| QR Code | ✓ | ✓ |
| Auto-Update | ✓ Fast Refresh | ✓ Schema Push |
| Language | JavaScript/TS | React/TSX |
| Output | React Native | Native Flutter |
| Performance | Good | Excellent |
| Bridge | Yes | No |
lumora startflutter doctorflutter pub get in mobile directoryMIT
FAQs
Lumora CLI - Expo-like development experience for Flutter
We found that lumora-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.