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

@rotomeca/utils

v7.0.3

Published

Various helpers

Downloads

116

Readme

@rotomeca/utils

npm version CI License: ISC Node.js >= 18 Docs

Bibliothèque TypeScript utilitaire pensée pour un usage professionnel et en entreprise. Fournit un ensemble cohérent de fonctions pures, types brandés et helpers couvrant les besoins quotidiens des projets Node.js et navigateur.


Installation

# pnpm
pnpm add @rotomeca/utils

# npm
npm install @rotomeca/utils

# yarn
yarn add @rotomeca/utils

Compatibilité

| Environnement | Support | |---|---| | Node.js | ≥ 18 | | ESM | ✅ | | CommonJS | ✅ | | TypeScript | ✅ (types inclus) | | Navigateur (bundler) | ✅ |


Modules

array — Manipulation de tableaux

import { chunk, unique, uniqueBy, groupBy, sortBy, flatten, flattenDeep,
         compact, partition, partitionToObject, intersection, difference,
         union, zip, take, drop, shuffle, minBy, maxBy,
         first, last, sum } from '@rotomeca/utils';

// Découper un tableau
chunk([1, 2, 3, 4, 5], 2)         // → [[1,2],[3,4],[5]]

// Dédupliquer
unique([1, 2, 2, 3])               // → [1, 2, 3]
uniqueBy([{id:1},{id:1}], x=>x.id) // → [{id:1}]

// Regrouper
groupBy(['a','ab','b'], s => s[0]) // → { a:['a','ab'], b:['b'] }

// Trier (Schwartz transform — fn appelée une fois par élément)
sortBy(users, u => u.name)

// Aplatir
flatten([[1,2],[3,4]])             // → [1,2,3,4]
flattenDeep([1,[2,[3,[4]]]])       // → [1,2,3,4]

// Filtrer les falsy
compact([1, null, 0, 'a', false])  // → [1, 'a']

// Séparer en deux
partition([1,2,3,4], x => x%2===0) // → [[2,4],[1,3]]
partitionToObject([1,2,3], x => x>1) // → { pass:[2,3], fail:[1] }

// Opérations ensemblistes
intersection([1,2,3], [2,3,4])    // → [2,3]
difference([1,2,3], [2,3])        // → [1]
union([1,2], [2,3])               // → [1,2,3]

// Combiner
zip([1,2,3], ['a','b','c'])       // → [[1,'a'],[2,'b'],[3,'c']]

// Trancher
take([1,2,3,4,5], 3)             // → [1,2,3]
drop([1,2,3,4,5], 2)             // → [3,4,5]

// Extrêmes
minBy(users, u => u.age)
maxBy(users, u => u.score)

object — Manipulation d'objets

import { pick, omit, deepClone, deepMerge, isEmpty,
         mapValues, mapKeys, filterKeys, filterValues,
         flattenObject, unflattenObject, invert } from '@rotomeca/utils';

pick({ a:1, b:2, c:3 }, ['a','c'])   // → { a:1, c:3 }
omit({ a:1, b:2, c:3 }, ['b'])       // → { a:1, c:3 }

// Clone profond (structuredClone si dispo, fallback JSON)
const clone = deepClone({ a: { b: 1 } });

// Fusion récursive (protégée contre la pollution de prototype)
deepMerge({ a:1, b:{ c:2 } }, { b:{ d:3 } }) // → { a:1, b:{ c:2, d:3 } }

// Transformer
mapValues({ a:1, b:2 }, x => x*2)    // → { a:2, b:4 }
mapKeys({ a:1 }, k => k.toUpperCase()) // → { A:1 }

// Filtrer
filterKeys({ a:1, b:2 }, k => k !== 'b') // → { a:1 }
filterValues({ a:1, b:2 }, v => v > 1)   // → { b:2 }

// Aplatir / reconstituer
flattenObject({ a: { b: { c: 1 } } })    // → { 'a.b.c': 1 }
unflattenObject({ 'a.b.c': 1 })          // → { a: { b: { c: 1 } } }

// Inverser clés/valeurs
invert({ a:'x', b:'y' })                 // → { x:'a', y:'b' }

string — Manipulation de chaînes

import { capitalize, capitalizeLine, slugify, toCamelCase, toSnakeCase,
         toPascalCase, truncate, isNullOrWhiteSpace, template,
         countOccurrences, reverse, words } from '@rotomeca/utils';

capitalize('bonjour')                    // → 'Bonjour'
capitalizeLine('bonjour le monde')       // → 'Bonjour Le Monde'
slugify('Élève en été')                  // → 'eleve-en-ete'
toCamelCase('hello_world')              // → 'helloWorld'
toSnakeCase('helloWorld')               // → 'hello_world'
toPascalCase('hello-world')             // → 'HelloWorld'
truncate('Bonjour le monde', 10)        // → 'Bonjour...'
isNullOrWhiteSpace('   ')               // → true

// Interpolation de template
template('Bonjour {name} !', { name: 'Alice' }) // → 'Bonjour Alice !'

countOccurrences('abcabc', 'bc')        // → 2
reverse('hello')                        // → 'olleh'
words('helloWorld')                     // → ['hello', 'World']

async — Utilitaires asynchrones

import { sleep, retry, timeout, parallel, sequential } from '@rotomeca/utils';

// Pause
await sleep(toUint(500));

// Réessayer automatiquement
const data = await retry(
  () => fetch('/api/data').then(r => r.json()),
  toUint(3),   // 3 tentatives
  toUint(500), // 500ms entre chaque
);

// Timeout sur une promesse
await timeout(fetchSomething(), toUint(3000));

// Exécution parallèle
const [a, b] = await parallel([
  () => fetchUsers(),
  () => fetchPosts(),
]);

// Exécution séquentielle
const results = await sequential([
  () => step1(),
  () => step2(),
]);

function — Utilitaires fonctionnels

import { debounce, throttle, memoize, once, noop, identity } from '@rotomeca/utils';

// Débounce (remet le timer à zéro à chaque appel)
const onSearch = debounce(fetchResults, toUint(300));

// Throttle (au plus une fois par intervalle)
const onScroll = throttle(updateScrollbar, toUint(100));

// Mémoïsation (cache les résultats par arguments)
const fib = memoize((n: number) => ...);

// Une seule exécution
const init = once(() => setupApp());

// Valeurs neutres utiles en pipeline
onClick={noop}
[1, 2, 3].map(identity) // → [1, 2, 3]

pipe — Composition de fonctions

import { pipe } from '@rotomeca/utils';

// Jusqu'à 10 fonctions chaînées, entièrement typé
const result = pipe(
  '  Bonjour Le Monde  ',
  s => s.trim(),
  s => s.toLowerCase(),
  slugify,
); // → 'bonjour-le-monde'

types — Types brandés & constructeurs

Les types brandés préviennent les confusions entre int, uint et float à la compilation.

import { toInt, toUint, toFloat, toUfloat } from '@rotomeca/utils';
import type { int, uint, float, ufloat, MayBe, Nullable, Optional } from '@rotomeca/utils';

const age: uint = toUint(25);    // lève une erreur si négatif ou non entier
const delta: int = toInt(-5);
const ratio: float = toFloat(0.75);

// Proxies de conversion (évitent les appels répétitifs à toUint etc.)
import { Uint, Int, Float, Ufloat } from '@rotomeca/utils';
const n = Uint[42]; // uint — validé et mis en cache

guard — Type guards

import { isDefined, isNullOrUndefined, isNonEmptyString,
         isNonEmptyArray, isObject, isPlainObject } from '@rotomeca/utils';

if (isDefined(value)) {
  // value est NonNullable<T> ici
}

if (isNonEmptyArray<User>(data)) {
  // data est [User, ...User[]] ici — data[0] toujours défini
}

validator — Validation de formats

import { isEmail, isURL, isUUID, isNumeric, isAlpha, isHexColor } from '@rotomeca/utils';

isEmail('[email protected]')              // → true
isURL('https://example.com')            // → true
isUUID('550e8400-e29b-41d4-a716-...')   // → true
isNumeric('3.14')                        // → true
isAlpha('Éric')                          // → true
isHexColor('#FF5733')                    // → true

number — Utilitaires numériques

import { clamp, roundTo, isInRange, average } from '@rotomeca/utils';

clamp(15, 0, 10)                    // → 10
roundTo(toFloat(3.14159), toUint(2)) // → 3.14
isInRange(5, 1, 10)                 // → true
average([1, 2, 3, 4])               // → 2.5

constants — Constantes typées

import { EMPTY_STRING, SPACE, UI_ZERO, UI_ONE, I_MINUS_ONE,
         F_HALF, UF_ONE } from '@rotomeca/utils';

Ecosystème Rotomeca

Ce package fait partie d'un écosystème cohérent :

| Package | Description | |---|---| | @rotomeca/utils | Ce package | | @rotomeca/rop | Gestion d'erreurs typée (Result<T, E>) | | @rotomeca/event | Système d'événements typés à la C# | | @rotomeca/jsenumerable | LINQ lazy en TypeScript |


Contribuer

git clone https://github.com/Rotomeca/node-utils.git
cd node-utils
pnpm install
pnpm test

Les contributions sont les bienvenues via Pull Request sur la branche dev.


Licence

ISC © Rotomeca