https://github.com/daixinye/xsim
轻量 Simulator 命令行工具
https://github.com/daixinye/xsim
Last synced: 3 months ago
JSON representation
轻量 Simulator 命令行工具
- Host: GitHub
- URL: https://github.com/daixinye/xsim
- Owner: daixinye
- Created: 2019-08-20T09:12:23.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-21T07:52:46.000Z (almost 7 years ago)
- Last Synced: 2026-01-01T14:34:18.283Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# XSIM
对 `xcrun simctl` 命令进行轻量的封装,从而简化对 iOS Simulator 的使用。
## 特性 Features
### 设备 Device
### 应用 Application
### 操作 Operation
打开 URL
```
$ xsim open
```
### 媒体 Media
上传文件到模拟器中
```
$ xsim upload
```
## 实现思路
接收输入 -> 拼接成 `xcrun simctl` 命令 -> 执行
## 目录结构
```
.
├── bin # xsim 命令
├── build
├── src
├── test
├── README.md
├── index.ts
└── package.json
```