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

telodash-js

v1.1.1

Published

SDK officiel TeloDash — Analytics + Graphiques pour développeurs

Readme

telodash-js

SDK officiel TeloDash — Analytics SaaS pour développeurs africains.

Ce que c'est

TeloDash est un SaaS analytics. Tu crées un compte, tu crées un projet, tu obtiens une API key et tu commences à tracker les événements de ton app en quelques minutes.

Le SDK telodash-js te permet de :

  • Envoyer des événements depuis n'importe quelle app (Next.js, React, Node.js...)
  • Intégrer des graphiques directement dans ton dashboard avec TeloDashChart

Installation

npm install telodash-js recharts

Démarrage rapide

  1. Crée un compte sur https://telodash.telopex.online
  2. Crée un projet dans ton dashboard
  3. Copie ton API key
  4. Installe le SDK et commence à tracker

Tracking d'événements

import { TeloDash } from 'telodash-js'

const td = new TeloDash('TON_API_KEY')

// Page vue td.pageview('/home') td.pageview('/dashboard', 'user123')

// Inscription / Connexion td.signup('user123') td.login('user123')

// Clic td.click('bouton-acheter', '/pricing')

// Événement custom td.track('purchase', { userId: 'user123', page: '/checkout', data: { amount: 25000, currency: 'FCFA' } })

Graphiques (bonus développeur)

TeloDashChart est un composant React réutilisable inclus dans le SDK. Il te permet d'afficher n'importe quelle donnée sous forme de graphique dans ton propre dashboard.

import { TeloDashChart } from 'telodash-js/react'

// Avec tes propres données <TeloDashChart data={[{ mois: 'Jan', ventes: 5000 }, { mois: 'Fev', ventes: 8000 }]} xKey="mois" yKey="ventes" type="bar" title="Mes ventes" color="#E2703A" />

// Avec données automatiques depuis TeloDash

Paramètres TeloDashChart

| Paramètre | Type | Description | |-----------|------|-------------| | type | line, bar, pie, area | Type de graphique | | data | array | Tes propres données (mode manuel) | | xKey | string | Clé de l'axe X | | yKey | string ou string[] | Clé(s) de l'axe Y | | color | string ou string[] | Couleur(s) hex | | height | number | Hauteur en px (défaut: 300) | | title | string | Titre du graphique | | showGrid | boolean | Afficher la grille | | showLegend | boolean | Afficher la légende | | apiKey | string | API key TeloDash (mode auto) | | projectId | string | ID projet TeloDash (mode auto) | | metric | pageviews, events, users | Métrique à afficher (mode auto) |

Note : TeloDashChart est un bonus pour les développeurs. Il n'est pas lié aux plans d'abonnement TeloDash.

Plans TeloDash

| Plan | Prix | Projets | Events/mois | |------|------|---------|-------------| | Gratuit | 0 FCFA | 1 | 5 000 | | Starter | 2 900 FCFA/mois | 3 | 50 000 | | Pro | 7 900 FCFA/mois | 10 | 500 000 | | Business | 19 900 FCFA/mois | Illimité | Illimité |

API Reference

| Méthode | Paramètres | Description | |---------|-----------|-------------| | pageview(page, userId?) | page: string | Tracker une page vue | | signup(userId) | userId: string | Tracker une inscription | | login(userId) | userId: string | Tracker une connexion | | click(element, page?) | element: string | Tracker un clic | | track(type, options?) | type: string | Événement custom |

Liens

  • Dashboard : https://telodash.telopex.online
  • Documentation : https://telodash.telopex.online/docs
  • Pricing : https://telodash.telopex.online/pricing
  • Telopex : https://telopex.online
  • Support : [email protected]