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

chronex

v1.0.1

Published

Chronex est un framework JavaScript qui permet d'afficher le temps écoulé entre une date spécifiée et le moment actuel. Il prend en charge plusieurs langues et peut être configuré pour mettre à jour automatiquement l'affichage du temps.

Downloads

120

Readme

Chronex

Chronex est un framework JavaScript qui permet d'afficher le temps écoulé entre une date spécifiée et le moment actuel. Il prend en charge plusieurs langues et peut être configuré pour mettre à jour automatiquement l'affichage du temps.

Table des matières

Fonctionnalités

  • Affichage du temps écoulé en secondes, minutes, heures et jours.
  • Support multilingue (anglais, français, espagnol, allemand, italien, néerlandais, portugais, russe, chinois, arabe).
  • Option d'actualisation automatique.

Installation

Inclurer le fichier du framwork en haut dans head :

 <script src="https://cdn.jsdelivr.net/gh/emmadiblo/chronex@main/chronex.js"></script>

Utilisation

Ajoutez un élément HTML avec l'ID time-ago :

<span id="time-ago"></span>

Initialisez le framework avec votre date et vos préférences :

new Chronex('2024-11-20 16:09:12', 'fr', true, 1000);

Exemple Complet

<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Chronex Example</title>
    <script src="https://cdn.jsdelivr.net/gh/emmadiblo/chronex@main/chronex.js"></script>
</head>
<body>

<span id="time-ago"></span>

<script>
 const date = '2024-11-20 16:34:00'; // Date à afficher
    const language = 'ar'; // Langue (par exemple, 'en', 'fr', 'es')
    const autoUpdate = true; // Indique si l'actualisation automatique est activée
    const updateInterval = 1000; // Délai de mise à jour en millisecondes(ici 1 sec)

    // Initialiser le framework
    new Chronex(date, language, autoUpdate, updateInterval);
    // ou new Chronex('2024-11-20 16:09:12', 'fr', true, 1000);
</script>

</body>
</html>

Langues supportées

  • Anglais (en)
  • Français (fr)
  • Espagnol (es)
  • Allemand (de)
  • Italien (it)
  • Néerlandais (nl)
  • Portugais (pt)
  • Russe (ru)
  • Chinois (zh)
  • Arabe (ar)

Contribuer

Les contributions sont les bienvenues ! Pour contribuer :

  1. Fork le projet.
  2. Créez une nouvelle branche (git checkout -b feature-branch).
  3. Effectuez vos modifications

Licence

Creative Commons Attribution-NonCommercial 4.0 International License

Copyright (c) 2024 [Emma diblo]

Conditions de la licence

Vous êtes libre de :

  • Partager — copier et redistribuer le matériel dans n'importe quel format ou support.
  • Adapter — remixer, transformer et créer à partir du matériel.

Selon les conditions suivantes :

  • Attribution — Vous devez créditer l'auteur original, fournir un lien vers la licence, et indiquer si des modifications ont été apportées. Vous pouvez le faire de manière raisonnable, mais pas de manière à suggérer que l'auteur vous soutient ou soutient votre utilisation.

  • NonCommercial — Vous ne pouvez pas utiliser le matériel à des fins commerciales.

Pas d'autres restrictions

Vous ne pouvez pas appliquer légalement des termes ou des mesures supplémentaires qui restreindraient les droits accordés par la licence.

Avis de non-responsabilité

Ce matériel est fourni "tel quel", sans garanties d'aucune sorte, explicites ou implicites, y compris, mais sans s'y limiter, les garanties de qualité marchande, d'adéquation à un usage particulier et de non-contrefaçon.

Pour plus de détails, veuillez consulter Creative Commons.