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

vendimob-tracker-plugin

v1.0.7

Published

VendimobTracker plugin for Phonegap Build

Readme

Instrukcja instalacji pluginu VendimobTracker

English version below
  1. Dodaj vendimob-tracker-plugin z npm (menedżer pakietów Javascript; więcej na: https://www.npmjs.com/) do config.xml. Dokładny link do pakietu: https://www.npmjs.com/package/vendimob-tracker-plugin.

    <widget id="com.phonegap.yourApplication" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
        (…)
            <gap:plugin name="vendimob-tracker-plugin" source="npm"/>
        (…)
    </widget>
  2. Zmodyfikuj funkcję onDeviceReady w pliku www/js/index.js tak, by wywołała funkcję tworzącą agenta z pluginu vendimob-tracker-plugin (VendimobTrackerPlugin.createVendimobAgent()).

    onDeviceReady: function() {
        app.receivedEvent('deviceready');
        (…)
        if (VendimobTrackerPlugin){
            VendimobTrackerPlugin.createVendimobAgent("StringApplicationId", BooleanDebugMode);
        });
        (…)
    },

    Przekazywane parametry:
    StringApplicationId - Id Twojej aplikacji przekazane w Stringu
    BooleanDebugMode - Boolean, true jeśli chcesz uruchomić VendimobAgenta w trybie debugowania, false jeśli nie.

  3. Dodaj funkcje do obsługi VendimobAgenta w pliku www/js/index.js.

    var app = {
    (…)
        // Funkcja do zatrzymania VendimobAgenta
        // Pamiętaj o wywołaniu jej przed zatrzymaniem aplikacji
        stopAgent: function(){
            if (VendimobTrackerPlugin){
                VendimobTrackerPlugin.stopAgent();
            }
        },
        // Funkcja do zmiany trybu Debug w VendimobAgent 
        setDebugMode: function(debugMode){
            if (VendimobTrackerPlugin){
                VendimobTrackerPlugin.setDebugMode(debugMode);
            }
        }
    (…)
    }

    Parametry:
    debugMode - Boolean, true jeśli chcesz uruchomić debug mode, false jeśli nie.

  4. Wrzuć projekt na stronę Phonegap Build (https://build.phonegap.com/apps) i go zbuduj.

VendimobTracker plugin instalation.

  1. Add vendimob-tracker-plugin from npm (package manager for the JavaScript; more on: https://www.npmjs.com/) to confing.xml. Exact package link: https://www.npmjs.com/package/vendimob-tracker-plugin

    <widget id="com.phonegap.yourApplication" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
        (…)
        <gap:plugin name="vendimob-tracker-plugin" source="npm"/>
        (…)
    </widget>
  2. Modify onDeviceReady function in www/js/index.js file and call function to create agent from vendimob-tracker-plugin (VendimobTrackerPlugin.createVendimobAgent()).

    onDeviceReady: function() {
        app.receivedEvent('deviceready');
        (…)
        if (VendimobTrackerPlugin){
           VendimobTrackerPlugin.createVendimobAgent("StringApplicationId", BooleanDebugMode);
        });
        (…)
    },

    createVendimobAgent parameters:
    StringApplicationId - your application Id in String
    BooleanDebugMode - Boolean, true if VendimobAgent should run in DebugMode, false if not.

  3. Add functions for handling VendimobAgengt in www/js/index.js file.

    var app = {
        (…)
        // Function for stopping VendimobAgent
        // Remember to run this function before closing your application
        stopAgent: function(){
            if (VendimobTrackerPlugin){
               VendimobTrackerPlugin.stopAgent();
            }
        },
        // Function to start DebugMode in VendimobAgent
        setDebugMode: function(debugMode){
            if (VendimobTrackerPlugin){
               VendimobTrackerPlugin.setDebugMode(debugMode);
            }
        }
        (…)
    }

    Parameters:
    debugMode - Boolean, true if VendimobAgent should run in DebugMode, false if not.

  4. Upload project on Phonegap Build page (https://build.phonegap.com/apps) and build it.