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

random-character-pkg

v0.1.2

Published

Un simple package NPM pour obtenir une lettre, un nombre ou un symbole aléatoire.

Readme

get-random-letter-pkg

Un package NPM simple et rapide pour générer une lettre aléatoire.

Installation

```bash npm install get-random-letter-pkg


*(Note : le nom "get-random-letter-pkg" est utilisé ici à titre d'exemple. Vous pouvez modifier le nom dans `package.json` avant de publier sur npm).*

## Utilisation

```javascript
const { 
  randomLetter, 
  randomUppercaseLetter, 
  randomCustomLetter,
  randomNumber,
  randomAlphanumeric,
  randomSymbol
} = require('random-character-pkg');

// Obtenir une lettre minuscule aléatoire (a-z)
console.log(randomLetter()); 

// Obtenir une lettre majuscule aléatoire (A-Z)
console.log(randomUppercaseLetter());

// Obtenir un caractère aléatoire à partir d'une chaîne personnalisée
console.log(randomCustomLetter('aeiouy')); 

// Obtenir un nombre aléatoire entre 0 et 9
console.log(randomNumber());

// Obtenir un nombre aléatoire entre 50 et 100
console.log(randomNumber(50, 100));

// Obtenir un caractère alphanumérique aléatoire
console.log(randomAlphanumeric());

// Obtenir un symbole aléatoire
console.log(randomSymbol());

API

randomLetter()

Retourne une lettre minuscule de l'alphabet (a-z).

`randomUppercaseLetter()`

Retourne une lettre majuscule de l'alphabet (A-Z).

`randomCustomLetter(customString)`

Prend une chaîne de caractères en entrée et retourne un caractère aléatoire parmi ceux fournis.

`randomNumber(min = 0, max = 9)`

Retourne un nombre aléatoire compris entre `min` (inclus) et `max` (inclus). Par défaut, génère un chiffre de 0 à 9.

`randomAlphanumeric()`

Retourne un un caractère aléatoire pris parmi les lettres majuscules, minuscules et les chiffres (a-z, A-Z, 0-9).

`randomSymbol()`

Retourne un caractère de ponctuation ou un symbole spécial aléatoire (ex: !, @, #, etc.).

Licence

ISC