npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

iproov-cordova-plugin

v1.0.2

Published

Cordova plugin wrapping iProov native SDKs

Downloads

52

Readme

iProov Cordova Plugin

DISCLAIMER:
This Cordova plugin is a Wultra-driven project, tailored for the needs of their clients and is not officially maintained or supported by iProov. For official support and updates, please refer to iProov.

How to integrate

Add the plugin to your Cordova project using the following command:

cordova plugin add iproov-cordova-plugin

Custom localizations

List of available languages

The plugin package currently includes the following additional localizations:

  • Russian (ru)
  • Romanian (ro)
  • Czech (cs)

The plugin can merge extra language files from its bundled custom-localization/ folder into the generated iOS and Android host projects.

Each language is opt-in. Add one config entry per language to the host app config.xml:

<preference name="IProovLocalization_ru" value="true" />
<preference name="IProovLocalization_ro" value="true" />

You can also use plugin variables if you prefer that style:

<plugin name="iproov-cordova-plugin" spec="...">
    <variable name="IPROOV_LOCALIZATION_RU" value="true" />
    <variable name="IPROOV_LOCALIZATION_RO" value="true" />
</plugin>

The hook runs during after_prepare and also after plugin/platform add so the generated projects stay synchronized. On iOS it creates missing .lproj folders and registers them in the Xcode project. On Android it creates the correct values-* resource directory and merges missing <string> entries into strings.xml.

When enabled, the plugin adds localization files into the generated host project, but it does not remove those files again when the plugin is uninstalled. Cleaning up those files is up to the developer.

To opt out, remove the relevant entry from config.xml or set its value to false.

External documentation

API for this plugin is documented in the iProov React Native Plugin, which this Cordova Plugin is based on.

The API for this plugin is documented in the iProov React Native Plugin, on which this Cordova Plugin is based.

Please refer to the iProov React Native Plugin Documentation for detailed usage instructions.

Example usage

import { IProov } from "iproov-cordova-plugin"

const token = "TOKEN_FROM_YOUR_BACKEND" // Obtain this token from your backend
const url = "wss://eu3.rp.secure.iproov.me/ws" // Use the appropriate URL for your region
const options = null // You can provide additional `IProovOptions` if needed.

console.log("Starting iProov presence check...")
// Launch the iProov presence check. The call will wait until the process is completed.
const iProovResult = await IProov.launch(url, token, options, (event) => {
    // Handle iProov events here during the presence check
    console.log(`iProov event: ${event.name}`)
})
// The presence check is completed when the above call returns a result
console.log(`iProov presence check completed with result: ${JSON.stringify(iProovResult)}`)