├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── cla.yaml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── node-ios-device ├── binding.gyp ├── copy-framework.sh ├── lefthook.yml ├── media └── banner.jpg ├── package.json ├── pnpm-lock.yaml ├── rollup.config.ts ├── rollup.dts.config.ts ├── src ├── device-interface.cpp ├── device-interface.h ├── device.cpp ├── device.h ├── deviceman.cpp ├── deviceman.h ├── index.ts ├── mobiledevice.h ├── node-ios-device.cpp ├── node-ios-device.h ├── relay.cpp └── relay.h ├── test ├── TestApp │ ├── TestApp.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── TestApp │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── main.m │ │ ├── server.h │ │ └── server.m └── node-ios-device.test.ts ├── tsconfig.build.json ├── tsconfig.check.json ├── tsconfig.json └── vitest.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cla.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/.github/workflows/cla.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/README.md -------------------------------------------------------------------------------- /bin/node-ios-device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/bin/node-ios-device -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/binding.gyp -------------------------------------------------------------------------------- /copy-framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/copy-framework.sh -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/lefthook.yml -------------------------------------------------------------------------------- /media/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/media/banner.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /rollup.dts.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/rollup.dts.config.ts -------------------------------------------------------------------------------- /src/device-interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/device-interface.cpp -------------------------------------------------------------------------------- /src/device-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/device-interface.h -------------------------------------------------------------------------------- /src/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/device.cpp -------------------------------------------------------------------------------- /src/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/device.h -------------------------------------------------------------------------------- /src/deviceman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/deviceman.cpp -------------------------------------------------------------------------------- /src/deviceman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/deviceman.h -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mobiledevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/mobiledevice.h -------------------------------------------------------------------------------- /src/node-ios-device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/node-ios-device.cpp -------------------------------------------------------------------------------- /src/node-ios-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/node-ios-device.h -------------------------------------------------------------------------------- /src/relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/relay.cpp -------------------------------------------------------------------------------- /src/relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/src/relay.h -------------------------------------------------------------------------------- /test/TestApp/TestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/TestApp/TestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/TestApp/TestApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /test/TestApp/TestApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/AppDelegate.h -------------------------------------------------------------------------------- /test/TestApp/TestApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/AppDelegate.m -------------------------------------------------------------------------------- /test/TestApp/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /test/TestApp/TestApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /test/TestApp/TestApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /test/TestApp/TestApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /test/TestApp/TestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/Info.plist -------------------------------------------------------------------------------- /test/TestApp/TestApp/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/ViewController.h -------------------------------------------------------------------------------- /test/TestApp/TestApp/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/ViewController.m -------------------------------------------------------------------------------- /test/TestApp/TestApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/main.m -------------------------------------------------------------------------------- /test/TestApp/TestApp/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/server.h -------------------------------------------------------------------------------- /test/TestApp/TestApp/server.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/TestApp/TestApp/server.m -------------------------------------------------------------------------------- /test/node-ios-device.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/test/node-ios-device.test.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/tsconfig.check.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidev/node-ios-device/HEAD/vitest.config.ts --------------------------------------------------------------------------------