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

lorrainjs

v1.1.2

Published

Logger for Lorraine people

Downloads

8

Readme

lorrainjs

#####################################

Le Loggueur Des Développeurs Lorrains

#####################################

  • Auteurs:
  • Dépendence: JavaScript (ES06)
  • Description: Fournit des outils pour rendre les messages console compréhensibles pour les développeurs web lorrains
  • License: MIT
  • Publié sur npmjs package

SCHPEUNE COMMENT QU'ON INSTALLE GROS

Dans ton projet avec yarn :

npm i lorrainjs

Dans ton projet avec npm :

yarn add lorrainjs

COMMENT L'UTILISER GROS

Importe à lô source de ton projet avant de mamailler n'importe comment :

Soit au détail dans l'cornet :

const { initLog, initWarn } = require("lorrainjs");
import { initLog, initWarn } from "lorrainjs";

Soit en gros (gros) :

const lorrainjs = require("lorrainjs");
import lorrainjs from "lorrainjs";

Puis, initiôlise le loggueur lorrain :

initAll();

Tu peux spécifier quelles options activer uniquement :

initAll({ gros: true });

Les logs lorrains sont maintenant actifs.

La traduction s'applique aussi bien aux string qu'aux array ou object.

console.log("Michel est parti"); // le Michel est parti gros
console.warn("Jacky est revenu"); // le Jacky est revenu gros
console.error("Francis mange une pomme"); // le Francis mange une mirabelle gros
console.log({
  michel: "Michel est parti",
  jacky: "Jacky est revenu",
}); // { michel: "le Michel est parti gros", jacky: "le Jacky est revenu gros" }
console.log(["Michel est parti", "Jacky est revenu"]); // ["le Michel est parti gros", "le Jacky est revenu gros"]

LES OPTIONS DE CONFIGURATION

  1. gros: true;
    // met 'true' ou 'false' pour activer ou désactiver la ponctuation de phrase "gros".
  2. le: true;
    // met 'true' ou 'false' pour activer ou désactiver l'article d'itentification lorrain ("le" ou "la").
  3. mirabelle: true;
    // met 'true' ou 'false' pour convertir les fruits étrangers.
  4. o: true;
    // met 'true' ou 'false' pour convertir la voyelle "a" en "ô" lorrain.

Exemple :

const options = {
  gros: true,
  le: false,
  o: true,
  mirabelle: true,
};

LES FONCTIONS DISPONIBLES GROS:

  • initAll(options);

    Initialise tout le loggueur. Les fonctions nôtives console.log, console.warn et console.error seront trôduites automatiquement.

  • initLog(options);

    Initialise uniquement lô fonction console.log.

  • initWarn(options);

    Initialise uniquement ô fonction console.warn.

  • initError(options);

    Initialise uniquement lô fonction console.error.

  • translate(options);

    Permet que tu traduise un texte manuellement sans impliquer la console.

  • originalLog();

    Donne un accès à lô fonction console.log d'origine (avant traduction) pour permettre de réaliser des logs non trôduits même après que tu aie exécuté initLog() ou initAll().

  • originalWarn();

    Donne un accès à lô fonction console.warn d'origine (avant traduction) pour permettre de réaliser des logs non trôduits même après que tu aie exécuté initWarn() ou initAll().

  • originalError();

    Donne un accès à lô fonction console.error d'origine (avant traduction) pour permettre de réaliser des logs non trôduits même après que tu aie exécuté initError() ou initAll().

TESTE LORRAINJS EN LIGNE

La librairie peut être testée en ligne via cette ôdresse :

https://julienmattiussi.github.io/traducteur-lorrain/

QUELQUES EXEMPLES TU VOIS GROS, ENFIN SI T'ES PAS BEÛLOU :

import lorrainjs from "lorrainjs";
lorrainjs.initAll();
console.log("Michel est parti"); // le Michel est parti gros
console.warn("Jacky est revenu"); // le Jacky est revenu gros
console.error("Francis mange une pomme"); // le Francis mange une mirabelle gros
import { initLog, originalLog } from "lorrainjs";
const options = {
  gros: true,
  mirabelle: true,
};
initLog(options);
console.log("Francis mange une pomme"); // Francis mange une mirabelle gros
console.warn("Francis mange une pomme"); // Francis mange une pommme
originalLog("Francis mange une pomme"); // Francis mange une pommme
import { initLog, initWarn } from "lorrainjs";
const optionsLog = {
  gros: true,
  le: false,
  mirabelle: true,
};
const optionsWarn = {
  gros: false,
  le: false,
  mirabelle: true,
};
initLog(optionsLog);
initWarn(optionsWarn);
console.log("Francis mange une pomme"); // Francis mange une mirabelle gros
console.warn("Francis mange une pomme"); // Francis mange une mirabelle
console.warn(["Francis mange une pomme", "Jacky est revenu"]); // ["Francis mange une mirabelle", "Jacky est revenu"]
console.error("Francis mange une pomme"); // Francis mange une pomme

ISSUES

Et pis si tu trouves des trucs chounts, bha t'ouvres une issue, t'inquiète paupiette, t'auras pas la chouffe.