simvyn 1.0.1 → 1.0.3
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 +94 -0
- package/dist/dashboard/apple-touch-icon.png +0 -0
- package/dist/dashboard/assets/index-DJAZnP1I.css +5464 -0
- package/dist/dashboard/assets/index-Du0XWZXh.js +50491 -0
- package/dist/dashboard/assets/index-Du0XWZXh.js.map +1 -0
- package/dist/dashboard/favicon.png +0 -0
- package/dist/dashboard/icon-1024.png +0 -0
- package/dist/dashboard/icon-192.png +0 -0
- package/dist/dashboard/icon-512.png +0 -0
- package/dist/dashboard/index.html +47 -0
- package/dist/index.js +7824 -0
- package/package.json +16 -12
- package/src/commands/device.ts +0 -274
- package/src/commands/start.ts +0 -29
- package/src/index.ts +0 -43
package/README.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
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
|
+
<p align="center">
|
|
21
|
+
<img src="https://raw.githubusercontent.com/pranshuchittora/simvyn/main/assets/demo.gif" alt="simvyn demo" />
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
## Quick Start
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npx simvyn
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Starts the local server, opens the web dashboard in your browser, and discovers all connected iOS Simulators and Android Emulators automatically.
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
**Global install:**
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npm install -g simvyn
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
**One-time use (no install):**
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
npx simvyn
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
**Requirements:**
|
|
47
|
+
|
|
48
|
+
- Node.js >= 22.12.0
|
|
49
|
+
- macOS (full iOS + Android support) or Linux (Android only)
|
|
50
|
+
|
|
51
|
+
## Features
|
|
52
|
+
|
|
53
|
+
- **Device Management** — Discover, boot, shutdown, erase iOS Simulators and Android Emulators
|
|
54
|
+
- **Location Simulation** — Set GPS coordinates, play GPX/KML routes with speed control, save favorite locations
|
|
55
|
+
- **App Management** — Install, launch, terminate, uninstall apps via drag-and-drop or CLI
|
|
56
|
+
- **Log Viewer** — Real-time log streaming with level filtering, regex search, and export
|
|
57
|
+
- **Screenshots and Recording** — Capture screenshots and record screen on any device
|
|
58
|
+
- **Deep Links** — Open URLs and custom schemes, save favorites per app
|
|
59
|
+
- **Push Notifications** — Compose and send push payloads to iOS simulators with template library
|
|
60
|
+
- **File Browser** — Browse app sandboxes, upload/download files, edit text files inline
|
|
61
|
+
- **Database Inspector** — Browse SQLite tables, run SQL queries, view SharedPreferences and NSUserDefaults
|
|
62
|
+
- **Device Settings** — Toggle dark mode, manage permissions, override status bar, accessibility presets
|
|
63
|
+
- **Crash Logs** — View iOS diagnostic reports and Android logcat crashes
|
|
64
|
+
- **Developer Utilities** — Port forwarding, display overrides, battery simulation, input injection, bug reports
|
|
65
|
+
- **Web Dashboard** — Apple Liquid Glass design with command palette (Cmd+K), keyboard navigation
|
|
66
|
+
- **Full CLI** — Every feature works headlessly via `simvyn <command>`
|
|
67
|
+
|
|
68
|
+
## CLI Examples
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
simvyn # Start dashboard
|
|
72
|
+
simvyn device list # List all devices
|
|
73
|
+
simvyn location set <device> 37.78 -122.41 # Set GPS location
|
|
74
|
+
simvyn app install <device> ./app.apk # Install an app
|
|
75
|
+
simvyn screenshot <device> # Take a screenshot
|
|
76
|
+
simvyn logs <device> --level error # Stream error logs
|
|
77
|
+
simvyn push <device> --payload payload.json # Send push notification
|
|
78
|
+
simvyn device create <name> <type> <runtime> # Create iOS simulator
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
## How It Works
|
|
82
|
+
|
|
83
|
+
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.
|
|
84
|
+
|
|
85
|
+
## Supported Platforms
|
|
86
|
+
|
|
87
|
+
| Platform | iOS Simulators | Android Emulators | Android Devices |
|
|
88
|
+
| -------- | -------------- | ----------------- | --------------- |
|
|
89
|
+
| macOS | Yes | Yes | Yes |
|
|
90
|
+
| Linux | No | Yes | Yes |
|
|
91
|
+
|
|
92
|
+
## License
|
|
93
|
+
|
|
94
|
+
MIT
|
|
Binary file
|