
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
appium-ios-simulator
Advanced tools
Appium API for dealing with iOS simulators. The API enables you to use the following features:
async getSimulator(udid)
This is the main entry of this module. This function returns a simulator object (see below) associated with the udid passed in. If an iOS simulator with the given udid does not exist already on this machine, it will throw an error.
If you want to create a new simulator, you can use the createDevice() method of node-simctl.
import { getSimulator } from 'appium-ios-simulator';
import assert from 'node:assert/strict';
const sim = await getSimulator('DAE95172-0788-4A85-8D0D-5C85509109E1');
await sim.run();
assert.equal('Booted', (await sim.stat()).state);
await sim.shutdown();
assert.equal('Shutdown', (await sim.stat()).state);
The following tools and utilities are not mandatory, but could be used by the appium-ios-simulator, if installed locally, to extend its functionality:
contacts, camera, faceid, health, homekit, notifications, speech and userTracking permissionsCheck Xcode wikipedia for more details about Xcode version to iOS version mapping.
Checkout the repository and run
npm install
npm run dev
Use the following commands to run tests:
# unit tests
npm run test
# integration tests
npm run e2e-test
node-simctl is a Node.js wrapper around Apple's simctl command-line tool, which is used to control iOS simulators. It provides similar functionalities to appium-ios-simulator, such as starting and stopping simulators, but it directly interfaces with simctl, offering a more low-level control.
ios-sim is a command-line utility to launch iOS simulators and install apps on them. While it provides similar functionalities to appium-ios-simulator, it is more focused on command-line usage rather than being a library for programmatic control.
FAQs
iOS Simulator interface for Appium.
The npm package appium-ios-simulator receives a total of 326,635 weekly downloads. As such, appium-ios-simulator popularity was classified as popular.
We found that appium-ios-simulator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers 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
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Research
/Security News
Malicious Rust crate evm-units disguised as an EVM version helper downloads and silently executes OS-specific payloads likely aimed at crypto theft.