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

@alu0101048239/addlogging

v0.2.3

Published

Implementación de la función addLogging

Downloads

14

Readme

ESPREE LOGGING

Este módulo incluye el método addLogging, que permite crear un árbol de análisis sintáctico (AST) a partir de un código JavaScript de entrada, e insertar logs cada vez que se detecta una función. Para ello, se recorre el árbol y se comprueba si el tipo de nodo actual es FunctionDeclaration, FunctionExpression o ArrowFunctionExpression. Posteriormente, se llama a la función addBeforeCode, que inserta un console.log cada vez que detecta uno de estos tipos de nodo. En el console.log se incluye el nombre de la función, los parámetros que recibe y la línea en que se encuentra.

Instalation

npm install @alu0101048239/addlogging

Para instalar globalmente, ejecute el siguiente comando:

npm install -g @alu0101048239/addlogging

Usage

  const logging = require('index')
  addLogging = logging.addLogging
  
  let input = `function foo(a, b) {   
      var x = 'blah';   
      var y = (function () {
        return 3;
      })();
    }     
    foo(1, 'wut', 3);`;
  
  console.log(addLogging(input));

Para probar el ejecutable, si el módulo ha sido instalado localmente, escriba el siguiente comando:

    npx add-logging --output <outputFile> --pattern <pattern> <inputFile> 

Para mostrar la ayuda del programa, ejecutar el siguiente comando:

    npx add-logging --help

Contributing

Añada test unitarios en caso de añadir cualquier funcionalidad al módulo.

Los test se encuentran en el fichero tests/test.js

Para ejecutarlos, escriba el siguiente comando:

npm test

Documentation

El código estará comentado en formato JSDoc. Para generar la documentación, primero instalamos globalmente documentation:

npm install -g documentation

A continuación, generamos la documentación mediante el comando:

documentation build index.js logging-cli.js -f md -o docs/docs.md

El fichero de documentación será de tipo MarkDown. Para generar directamente la documentación, ejecutamos:

npm doc

License

MIT

Release History

* 0.1.0 Versión inicial
* 0.1.1 Arreglo del informe
* 0.2.0 Añadida opción --pattern
* 0.2.1 Corrección de errores
* 0.2.2 Corrección de errores
* 0.2.3 Corrección de errores