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

@alu0101237053/espree-logging

v0.4.0

Published

Adds logs to javascript code

Downloads

7

Readme

Open in Codespaces

Práctica Espree logging

Resumen de lo aprendido

Principalmente nos hemos apoyado en el uso de la libraria espree, hemos adquirido habilidades importantes en el uso de Estraverse para recorrer los nodos del árbol de análisis sintáctico, modificanco el árbol generado, los nodos y en sí el propio código también con una pequeña funcionalidad de escribir un 'console.log' seguidamente de la llamada a 3tipos de funciones indicando la línea y los argumentos que se le pasan.

Además, hemos aprendido cómo publicar un paquete en npm, lo que nos permite compartir nuestro código con otros desarrolladores de todo el mundo.

Finalmente, hemos repasado herramientas de desarrollo fundamentales para mejorar nuestra eficiencia, como los tests, el cubrimiento de código y la integración continua. También hemos explorado cómo estas herramientas pueden ayudarnos a detectar errores y mejorar la calidad del código que producimos.

Indicar los valores de los argumentos

Se ha modificado el código de logging-espree.js para que el log también indique los valores de los argumentos que se pasaron a la función. Ejemplo:

function foo(a, b) {
  var x = 'blah';
  var y = (function (z) {
    return z+3;
  })(2);
}
foo(1, 'wut', 3);
function foo(a, b) {
    console.log(`Entering foo(${ a }, ${ b })`);
    var x = 'blah';
    var y = function (z) {
        console.log(`Entering <anonymous function>(${ z })`);
        return z + 3;
    }(2);
}
foo(1, 'wut', 3);

CLI con Commander.js

Con esta herramienta podemos hacer que la entrada por linea de comandos sea más sencilla. Para este caso, tenemos vaios parámetros que le podemos indicar al programa:
filename Indica el archivo que queremos pasar al spreen logger
--ouput Indica en que fichero acabara la salida
--help Parametro para ver los tipos de parámetros que acepta el programa\

program
  .version(version)
  .argument("<filename>", 'file with the original code')
  .option("-o, --output <filename>", "file in which to write the output")
  .action((filename, options) => {
    transpile(filename, options.output);
  });
program.parse(process.argv);

Reto 1: Soportar funciones flecha

Para detectar los distintos tipos de funciones hemos implementado el siguiente código dentro de la función addLogging()

const functionTypes = ['FunctionDeclaration', 'ArrowFunctionExpression', 'FunctionExpression'];
. . .
enter(node) {
  functionTypes.includes(node.type) ? addBeforeCode(node) : null;
}

Reto 2: Añadir el número de línea

Para esta característica hemos aprovechado la información que nos viene del propio nodo, desde allí podemos acceder a la línea y si tiene argumentos o no, el tipo de argumentos etc.

 const line = node.loc.start.line;

Tests and Covering

Se han realizado 10 tipos de tests, en los que podemos ver distintos tipos de salida segun el tipo de función. Tests

Algunos ejemplos: Test5:

function outerFunction(a) {
    console.log(`Entering outerFunction(${ a }) at line 1\n`);
    function innerFunction(b) {
        console.log(`Entering innerFunction(${ b }) at line 2\n`);
        return a + b;
    }
    return innerFunction(3);
}
outerFunction(2);

Test6:

const calculateSumOfMultiples = (a, b, n) => {
    console.log(`Entering <anonymous function>(${ a }, ${ b }, ${ n }) at line 1\n`);
    let sum = 0;
    for (let i = 1; i <= n; i++) {
        if (isMultiple(i, a) || isMultiple(i, b)) {
            sum += i;
        }
    }
    console.log(`Sum of multiples of ${ a } and ${ b } up to ${ n } is ${ sum }`);
    return sum;
};
function isMultiple(number, multipleOf) {
    console.log(`Entering isMultiple(${ number }, ${ multipleOf }) at line 12\n`);
    return number % multipleOf === 0;
}
calculateSumOfMultiples(3, 5, 10);

También hemos hecho lo necesario para hacer el covering durante el dersarrollo: Covering

Scripts

Puede ejecutar los siguientes scrips:

$npm run cov
$npm run test
$npm run docs