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

utilitish

v0.0.10

Published

Ce projet est distribué sous licence [GPL v3](https://www.gnu.org/licenses/gpl-3.0.html) © 2025 Donovan Ferreira.

Readme

Licence

Ce projet est distribué sous licence GPL v3 © 2025 Donovan Ferreira.

Ceci est une petite librairie qui ajoute plusieurs méthodes au prototype JavaScript.

Configuration Slugify

La méthode slugify() peut être personnalisée pour répondre à vos besoins spécifiques. Consultez la JSDoc dans votre IDE pour voir tous les exemples disponibles.

Configuration globale

Vous pouvez définir une configuration globale qui s'appliquera à tous les appels slugify() :

import { setSlugifyConfig } from 'utilitish';

// Configuration pour remplacer les symboles de genre
setSlugifyConfig({
    customReplacements: {
        '♀': 'feminin',
        '♂': 'masculin',
    },
    separator: '_',
});

'Test ♀'.slugify(); // "test_feminin"
'User♂@domain.com'.slugify(); // "user_masculin_at_domain_com"

Configuration par appel

Vous pouvez aussi passer une configuration spécifique à chaque appel :

// Utilise la config globale
'Hello World'.slugify(); // "hello-world"

// Override la config pour cet appel
'Hello World'.slugify({ separator: '_' }); // "hello_world"

Options de configuration

  • customReplacements: Remplacer des caractères spécifiques (ex: "♀" → "feminin")
  • separator: Caractère de séparation (défaut: "-")
  • lowercase: Convertir en minuscules (défaut: true)
  • removeAccents: Supprimer les accents (défaut: true)
  • allowedChars: Regex des caractères autorisés (défaut: /[a-zA-Z0-9]/)
  • maxLength: Longueur maximale du slug
  • transformers: Fonctions de transformation personnalisées

Gestion de la configuration

import { getSlugifyConfig, resetSlugifyConfig } from 'utilitish';

// Obtenir la config actuelle
const currentConfig = getSlugifyConfig();

// Réinitialiser aux valeurs par défaut
resetSlugifyConfig();

Pour plus d'exemples et cas d'usage avancés, consultez les JSDoc intégrées dans votre IDE.