find Available Port findAvailablePort : () => Promise < number >
Defined in node_modules/.pnpm/tauri-api-adapter@0.3.20_typescript@5.7.2/node_modules/tauri-api-adapter/dist/api/client/types.d.ts:209 get Interfaces getInterfaces : () => Promise < NetworkInterface [] >
Defined in node_modules/.pnpm/tauri-api-adapter@0.3.20_typescript@5.7.2/node_modules/tauri-api-adapter/dist/api/client/types.d.ts:207 get Non Empty Interfaces getNonEmptyInterfaces : () => Promise < NetworkInterface [] >
Defined in node_modules/.pnpm/tauri-api-adapter@0.3.20_typescript@5.7.2/node_modules/tauri-api-adapter/dist/api/client/types.d.ts:208 is Http Port Open isHttpPortOpen : ( ip : string , options ?: { keyword ?: string ; port : number ; protocol ?: "http" | "https" ; route ?: string ; statusCode ?: number ; } , ) => Promise < boolean >
Type declaration ( ip : string , options ?: { keyword ?: string ; port : number ; protocol ?: "http" | "https" ; route ?: string ; statusCode ?: number ; } , ) : Promise < boolean > Parameters ip : string Optionaloptions : { keyword ?: string ; port : number ; protocol ?: "http" | "https" ; route ?: string ; statusCode ?: number ; } Returns Promise < boolean > Defined in node_modules/.pnpm/tauri-api-adapter@0.3.20_typescript@5.7.2/node_modules/tauri-api-adapter/dist/api/client/types.d.ts:211 is Port Taken isPortTaken : ( port : number ) => Promise < boolean >
Type declaration ( port : number ) : Promise < boolean > Returns Promise < boolean > Defined in node_modules/.pnpm/tauri-api-adapter@0.3.20_typescript@5.7.2/node_modules/tauri-api-adapter/dist/api/client/types.d.ts:210
Check if an http service is on given ip and port, and optional keyword, route, protocol By default, it will send a get request to
http://<ip>:<port>to see it a response is received. If route is provided, it will send a get request tohttp://<ip>:<port>/<route>If keyword is provided, it will check if the response contains the keyword (case insensitive)