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

@alu0101014319/addlogging

v0.2.2

Published

Módulo para añadir un mensaje con la información de la función a la que se accede, la cual pertenece a un código de entrada

Downloads

26

Readme

Espree Logging

Un módulo que proporciona un método que añade un mensaje mostrando el identificador de la función a la que se está accediendo mediante la manipulación del AST generado a partir de un código de entrada. Además, se le ha implementado dos mejoras: mostrar información de los parámetros que recibe la función y mostrar la línea en la que se realiza dicha llamada.

Instalación

    npm install @alu0101014319/addlogging

Para instalar globalmente:

    npm install -g @alu0101014319/addlogging

Ejecutable

El ejecutable del código se encuentra en el fichero cli.js. Para hacer uso de él, una vez se haya instalado el módulo, simplemente se debe ejecutar el siguiente comando:

    npx add-logging --pattern 'functionNamePattern' --outFile salida.js input.js

Por el contrario, si está instalado globalmente, solo haría falta el siguiente comando:

    add-logging --pattern 'functionNamePattern' --outFile salida.js input.js

Uso

Uso básico:

const addLogging = require('./index.js');

let input = 
`function foo(a, b) {
    var x = 'blah';
    var y = function () {
        return 3;
    };
}
foo(1, 'wut', 3);`;

let output = addLogging(input);

console.log(output); 
/* =>
  function foo(a, b) {
    console.log(`Entering foo(${ a },${ b }) at line 1`);
    var x = 'blah';
    var y = function () {
        console.log(`Entering <anonymous function>() at line 3`);
        return 3;
    };
  }
  foo(1, 'wut', 3); 
*/

Uso del functionNamePattern:

const addLogging = require('./index.js');

let input = 
`function foo(a, b) {
    var x = 'blah';
    var y = function chuchu() {
        return 3;
    };
}
foo(1, 'wut', 3);`;

let pattern = 'foo';
let output = addLogging(input, pattern);

console.log(output); 
/* =>
  function foo(a, b) {
    console.log(`Entering foo(${ a },${ b }) at line 1`);
    var x = 'blah';
    var y = function chuchu() {
        return 3;
    };
  }
  foo(1, 'wut', 3); 
*/

Contribuir

Para añadir nuevas funcionalidades, se ruega que se mantenga el mismo estilo de codificación. Si se modifican o se agregan funcionalidades, genere las pruebas unitarias correspondientes para comprobar el buen funcionamiento de estas.

Licencia

La licencia para este módulo se puede consultar en el siguiente archivo: MIT LICENSE

Documentación

Para documentar el módulo usamos el formato Jsdoc:

documentation build index.js -f md -o docs.md

O también mediante el comando:

npm run doc

Para instalarlo: npm install -g documentation

Historial de lanzamientos

  • 0.1.0 Versión inicial
  • 0.1.1 Corrección de información
  • 0.1.2 Corrección de información
  • 0.2.0 Adición de la funcionalidad functionNamePattern
  • 0.2.1 Corrección de errores
  • 0.2.2 Corrección de información