simvyn 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,89 @@
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/pranshuchittora/simvyn/main/assets/simvyn-icon-1024.png" width="180" alt="simvyn" />
3
+ </p>
4
+
5
+ <h1 align="center">simvyn</h1>
6
+
7
+ <p align="center">
8
+ Universal mobile devtool — control iOS Simulators and Android Emulators from a single dashboard and CLI
9
+ </p>
10
+
11
+ <p align="center">
12
+ <a href="https://www.npmjs.com/package/simvyn"><img src="https://img.shields.io/npm/v/simvyn" alt="npm version" /></a>
13
+ <a href="https://www.npmjs.com/package/simvyn"><img src="https://img.shields.io/npm/l/simvyn" alt="license" /></a>
14
+ </p>
15
+
16
+ <p align="center">
17
+ <img src="https://raw.githubusercontent.com/pranshuchittora/simvyn/main/assets/banner.png" alt="simvyn dashboard" />
18
+ </p>
19
+
20
+ ## Quick Start
21
+
22
+ ```bash
23
+ npx simvyn
24
+ ```
25
+
26
+ Starts the local server, opens the web dashboard in your browser, and discovers all connected iOS Simulators and Android Emulators automatically.
27
+
28
+ ## Installation
29
+
30
+ **Global install:**
31
+
32
+ ```bash
33
+ npm install -g simvyn
34
+ ```
35
+
36
+ **One-time use (no install):**
37
+
38
+ ```bash
39
+ npx simvyn
40
+ ```
41
+
42
+ **Requirements:**
43
+ - Node.js >= 22.12.0
44
+ - macOS (full iOS + Android support) or Linux (Android only)
45
+
46
+ ## Features
47
+
48
+ - **Device Management** — Discover, boot, shutdown, erase iOS Simulators and Android Emulators
49
+ - **Location Simulation** — Set GPS coordinates, play GPX/KML routes with speed control, save favorite locations
50
+ - **App Management** — Install, launch, terminate, uninstall apps via drag-and-drop or CLI
51
+ - **Log Viewer** — Real-time log streaming with level filtering, regex search, and export
52
+ - **Screenshots and Recording** — Capture screenshots and record screen on any device
53
+ - **Deep Links** — Open URLs and custom schemes, save favorites per app
54
+ - **Push Notifications** — Compose and send push payloads to iOS simulators with template library
55
+ - **File Browser** — Browse app sandboxes, upload/download files, edit text files inline
56
+ - **Database Inspector** — Browse SQLite tables, run SQL queries, view SharedPreferences and NSUserDefaults
57
+ - **Device Settings** — Toggle dark mode, manage permissions, override status bar, accessibility presets
58
+ - **Crash Logs** — View iOS diagnostic reports and Android logcat crashes
59
+ - **Developer Utilities** — Port forwarding, display overrides, battery simulation, input injection, bug reports
60
+ - **Web Dashboard** — Apple Liquid Glass design with command palette (Cmd+K), keyboard navigation
61
+ - **Full CLI** — Every feature works headlessly via `simvyn <command>`
62
+
63
+ ## CLI Examples
64
+
65
+ ```bash
66
+ simvyn # Start dashboard
67
+ simvyn device list # List all devices
68
+ simvyn location set <device> 37.78 -122.41 # Set GPS location
69
+ simvyn app install <device> ./app.apk # Install an app
70
+ simvyn screenshot <device> # Take a screenshot
71
+ simvyn logs <device> --level error # Stream error logs
72
+ simvyn push <device> --payload payload.json # Send push notification
73
+ simvyn device create <name> <type> <runtime> # Create iOS simulator
74
+ ```
75
+
76
+ ## How It Works
77
+
78
+ simvyn wraps `xcrun simctl` (iOS) and `adb` (Android) behind a unified interface. No SDK required — works with any app, no code changes needed. The web dashboard communicates with a local Fastify server over WebSocket for real-time device state and log streaming.
79
+
80
+ ## Supported Platforms
81
+
82
+ | Platform | iOS Simulators | Android Emulators | Android Devices |
83
+ |----------|---------------|-------------------|-----------------|
84
+ | macOS | Yes | Yes | Yes |
85
+ | Linux | No | Yes | Yes |
86
+
87
+ ## License
88
+
89
+ MIT