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 🙏

© 2024 – Pkg Stats / Ryan Hefner

analytics-client-bizsys2

v0.0.5

Published

Um analytics para a biz, isso sera usado em mubs, porem a minha ideia é também ser bem abstrato

Downloads

3

Readme

analytics-client-bizsys2

Segunda versão do analytics da bizsys.

  • CRUD usando PouchDB.
  • Print log.
  • Sync PouchDB com o CouchDB.
  • Verifica se houve alguma interação na pagina.
  • Envia para o zabbix as interações, caso houver

Installation

npm install analytics-client-bizsys2 --save

Depois da instalação, caso esteja usando o electron, deve-se chamar o [electron-rebuild] (https://github.com/electron/electron-rebuild)

Depois de instala-lo no seu projeto, você deve executar a seguinte linha de comando.

./node_modules/.bin/electron-rebuild -f

Caso ele apresente algum erro você deve executar outro comando

./node_modules/.bin/electron-rebuild -f -w node_modules/analytics-client-bizsys2/node_modules/leveldown

Examples

const analytics = require('../index')({
    host: 'http://localhost:5984/',
    projectName: 'projeto_teste_v2',
    name: 'Projeto Teste V2',
    location: 'Av. Campos de teste V2',

    reloadWindowIfError: false,
    timeReloadWindows: 60000,
    showErrosConsole: false,
    showLogsInfo: false,
    checkInteraction: true,
    sendZabbix: true,
    timeIfInteraction: 60,
    timeZabbixIfInteraction: 5000,
    ifInteraction: function(ifInteraction){
        // ifInteraction é um boolean
        // true wakeup
        // false idle
    }
}, {
    change: function(changed){
        if(changed) console.log(`changed`, changed)
    },
    paused: function(pause){
        if(pause) console.log(`pause`, pause)
    },
    active: function(actives){
        if(actives) console.log(`actives`, actives)
    },
    denied: function(denieds){
        if(denieds) console.log(`denieds`, denieds)
    },
    complete: function(completes){
        if(completes) console.log(`completes`, completes)
    },
    error: function(errors){
        if(errors) console.log(`errors`, errors)
    }
})

Options

| Nome | Default | Detalhes | | ------------------------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- | | timeZabbixIfInteraction | 5000 | Intervalo de tempo em que é enviado para o zabbix uma falta de interação ou a presença de um interação do usuário. | | reloadWindowIfError | false | Se for permitido assim que houver um erro ele irá fazer um reload na página. | | timeReloadWindows | 60000 | Tempo de espera para atualizar a página da aplicação. | | showErrosConsole | false | Caso esteja habilitado ele irá mostrar no console todos os erros que ocorreram. | | showLogsInfo | false | Caso esteja habilitado ele irá imprimir no console todos os logs do analytics (Isso não se aplica a sincronização). | | checkInteraction | true | Verifica se houve interação, esta opção é relacionada a opção sendZabbix. sendZabbix só irá funcionar se esta opção se encontrar verdadeira. | | sendZabbix | true | Envia para o servidor zabbix, se às interações na aplicação. | | timeIfInteraction | 60 | Se a página ficar inativa por este período de tempo, então o método ifInteraction será chamado com o parâmetro falso. |