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

@alu0100889772/addlogging

v1.2.1

Published

Adds logging to a javascript file when a function starts

Downloads

8

Readme

Práctica Espree Logging

Aprendizaje con la herramienta Inspect

Observando el código podemos aprender que a partir de el código inicial, lo primero que se hace es transformarlo en un AST.

Este AST se va recorriendo hasta que encuentre un nodo con un 'type' FunctionDeclaration o FunctionExpression. Cuando lo ha encontrado es cuando añadimos nuestro propio nodo al AST con el Logging de que se ha entrado en esa función.

Esto se hace creado el código con el logging:

let beforeCode = `console.log('Entering ${name}(`)');`;

Y luego pasando el código por esprima.parse que lo transforma para poder inyectarlo al AST.

Añadir los parámetros de la función al Logging

Para poder añadir al Logging los parámetros de la función a la que se entra tenemos que observar el hijo de node que se llama params. Es un Array por lo que simplemente creamos un bucle que lo recorra y añadimos los nombres de los parámetros.

Usando commander

El paquete commander nos facilita la interfaz de comandos de nuestro programa. Añade fácilmente las opciones -h y -V además de permitir que creemos opciones personalizadas.

Para esta práctica añadí las siguientes líneas de código:

const program = require('commander');
const {version, description} = require('./package.json');

program
  .version(version)
  .arguments('<inputFileName>')
  .description(description)
  .option('-o, --output <filename>', 'output code will go to the specified file');
  
program.parse(process.argv);

Gracias a esto ya funcionan las opciones -h y -V. La opción -o <filename> se podrá usar simplemente con program.output para obtener el nombre del archivo de salida.

Documentación

Table of Contents
addLogging

This function starts the process to comment every function of the input code.

Parameters

Returns String commented code.

addBeforeCode

This function adds a comment after the program enters a function.

Parameters
  • node node where the comment will be injected.