mirror of
https://github.com/appium/appium.git
synced 2026-02-21 10:49:52 -06:00
- appium@2.12.0 - @appium/base-driver@9.12.0 - @appium/base-plugin@2.2.46 - @appium/doctor@2.1.12 - @appium/docutils@1.0.22 - @appium/driver-test-support@0.6.10 - @appium/execute-driver-plugin@3.0.36 - @appium/fake-driver@5.5.5 - @appium/fake-plugin@3.1.50 - @appium/images-plugin@3.0.20 - @appium/plugin-test-support@0.3.43 - @appium/schema@0.7.0 - @appium/support@5.1.5 - @appium/test-support@3.0.50 - @appium/types@0.22.0 - @appium/universal-xml-plugin@1.0.24
@appium/schema
JSON schema for Appium configuration files
Description
This package is used internally by Appium, but can also be used to validate Appium configuration files in other contexts.
Install
npm i @appium/schema
Usage
The schema is exported as a JS object:
const { AppiumConfigJsonSchema } = require('@appium/schema');
It is also provided as a JSON file (since this is a JSON schema, after all):
const schema = require('@appium/schema/lib/appium-config.schema.json');
See Also
@appium/types exports a TypeScript type AppiumConfig (generated from this package) for typesafe configuration objects; this may be useful if your Appium configuration is written in JS (e.g., .appiumrc.js). Example:
// @ts-check
/** @type {import('@appium/types').AppiumConfig} */
module.exports = {
server: {
port: 1234,
host: '127.0.0.1'
}
}
Notes
lib/appium-config.schema.json is generated by this package from lib/appium-config-schema.js (the single source of truth), but is under version control to avoid chicken-or-egg build problems.
License
Apache-2.0