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

generic-logs

v3.5.0

Published

Un paquete que modifica visualmente los registros para facilitar la resolución de errores

Downloads

11

Readme

GENERIC-LOGS

Generic-logs es un paquete para NodeJS que mejora ligeramente la funcion console.log haciendola algo mas visual y intiutiva ofreciendo varias funciones

Instalación

Puedes instalar el paquete utilizando uno de los siguientes comandos:

# Con NPM
npm install generic-logs

# Con Yarn
yarn add generic-logs

# Con PNPM
pnpm i generic-logs

Uso

Ejemplos :

const generic = require('generic-logs');

generic.info('Mensaje de información');
generic.success('Mensaje de éxito');
generic.warning('Mensaje de advertencia');
generic.error('Mensaje de error');

generic.separator(); // Separador por defecto: '----------'

console.log(generic.red('Este texto es rojo'));
console.log(generic.blue('Este texto es azul'));
console.log(generic.magenta('Este texto es magenta'));
console.log(generic.white('Este texto es blanco'));
console.log(generic.black('Este texto es negro'));

console.log(generic.bgred('El fondo de este texto es rojo'));
console.log(generic.bgblue('El fondo de este texto azul'));
console.log(generic.bgmagenta('El fondo de este texto magenta'));
console.log(generic.bgwhite('El fondo de este texto blanco'));
console.log(generic.bgblack('El fondo de este texto negro'));
// ... y más opciones de colores

custom({ title: 'Personalizado', message: 'Mensaje personalizado', color: 'green' });

// Funciones adicionales de formato
console.log(bold('Texto en negrita'));
console.log(italic('Texto en cursiva'));
console.log(underscore('Texto subrayado'));
// ... y más opciones de formato

Lista de estilos

| Color de texto | Fondo del texto | Estilos | | -------------- | --------------- | ----------------- | | cyan() | bgcyan() | reset() | | blue() | bgblue() | bold() | | red() | bgred() | underscore() | | white() | bgwhite() | dim() | | black() | bgblack() | italic() | | magenta() | bgmagenta() | backoneline() | | yellow() | bgyellow() | strikethrough() | | green() | bggreen() | reverse() |

custom({title,text,colors})

Crea tu propio log

  • Title: El titulo String
  • Text: Texto despues del titulo String
  • Color: Color del texto String
generic.custom({ title: 'Personalizado', message: 'Mensaje personalizado', color: 'verde' });

info(message)

Muestra un mensaje de información.

generic.info('Información importante');

warning(message)

Muestra un mensaje de advertencia.

generic.warning('Advertencia');

success(message)

Muestra un mensaje de exito

generic.success('¡¡Eureka!!');

error(message)

Muestra un mensaje de error

generic.error('Error encontrado');

separator(char, length)

Separator es una funcion que crea un separador visual en la consola.

Parámetros

  • Char (opcional, cadena): El carácter utilizado para crear el separador. Por defecto es '-'.
  • Length (opcional, número): La longitud del separador. Por defecto es 10. Ejemplo
generic.separator(); // Separador predeterminado
generic.separator('*', 20); // Separador personalizado con longitud 20 y carácter '*'
generic.separator('~', 15); // Separador personalizado con longitud 15 y carácter '~'

Contribución

Si deseas contribuir a este proyecto, puedes seguir los pasos a continuación:

  • Haz un fork del repositorio.

  • Crea una rama para tu nueva función o mejora:

    git checkout -b mi-nueva-funcion.
  • Realiza los cambios necesarios. Una vez hechos actualiza la definición de tipos:

    # Instala TSC si no lo tienes
    npm i -g typescript
    
    # Genera la definición de tipos
    npm run types
  • Realiza los commits:

    git commit -m 'Añadir mi nueva función'.
  • Envía tus cambios al repositorio remoto:

    git push origin mi-nueva-funcion.

    Abre una pull request en GitHub.

Licencia

Este proyecto está licenciado bajo la GNU General Public License v.3.0. Para más detalles, consulta el archivo LICENSE.