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

@delord/omniauth

v1.0.3

Published

SDK d'authentification centralisée pour OmniAuth

Readme

🚀 OmniAuth

version License: MIT

OmniAuth est un Identity Provider (IdP) centralisé. Ce SDK permet aux développeurs d'intégrer l'authentification multi-projets en quelques secondes, en gérant la communication sécurisée avec l'API OmniAuth.


✨ Points forts

  • Initialisation simplifiée : Configurez votre appId une seule fois.
  • Léger & Natif : Aucune dépendance externe (utilise fetch).
  • Sécurité : Gestion robuste des erreurs et validation des types de contenu.
  • Moderne : Support complet des ES Modules (import/export).


🛠️ Avant de commencer (Prérequis)

Avant d'installer le SDK, vous devez configurer votre environnement sur la console OmniAuth :

  1. Créer un compte : Rendez-vous sur omniauth pour vous inscrire.
  2. Configurer votre Application : Dans le menu Applications, créez un nouveau projet pour générer votre appid unique.
  3. Définir les Accès : Allez dans Niveaux d'accès d'application pour créer les rôles (Admin, User, etc.) propres à votre application.
  4. Ajouter des Utilisateurs : Dans le menu Utilisateurs d'application, liez vos comptes à l'application et attribuez-leur leurs niveaux d'accès.

📦 Installation

Installez le SDK via votre gestionnaire de paquets préféré :

npm install @delord/omniauth
# ou
yarn add @delord/omniauth

🚀 Utilisation Rapide

Login

import omniauth from '@delord/omniauth';

// 1. Initialisation avec votre ID d'application
const auth = omniauth("votre_appid_unique");

// 2. Authentification directe
const handleLogin = async (email, password) => {
  try {
    const result = await auth.login(email, password);
    return result;
  } catch (error) {
    console.error("Erreur OmniAuth :", error.message);
  }
};

RefreshToken

import omniauth from '@delord/omniauth';

// 1. Initialisation avec votre ID d'application
const auth = omniauth("votre_appid_unique");

// 2. RefreShToken directe
const handleRefresh = async (email, password) => {
  try {
     const result = await omniauthApp.refreshTokens(req.body.refreshToken);
    return result;
  } catch (error) {
    console.error("Erreur OmniAuth :", error.message);
  }
};

🛠️ Référence de l'API

omniauth(appId)

Initialise le service.

  • appId (String) : L'identifiant unique généré dans le menu "Applications" de votre console OmniAuth. Obligatoire.

auth.login(login, password)

Authentifie un utilisateur pour l'application configurée.

  • login (String) : Email ou identifiant de l'utilisateur.
  • password (String) : Mot de passe de l'utilisateur.
  • Retourne : Une Promise contenant l'objet de réponse (Token, User Info, etc.).

🌐 Architecture

OmniAuth repose sur une structure en trois couches pour garantir l'étanchéité de vos données :

  1. Applications : Identifiées par un appid unique servant d'audience pour les jetons.
  2. Niveaux d'accès : Définition des rôles (Admin, Éditeur, etc.) spécifiques à chaque application.
  3. Utilisateurs : Base centrale reliée dynamiquement aux applications via leurs niveaux d'accès.