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

@alu0101404141/constant-folding

v0.9.0

Published

Adds logs to javascript code

Downloads

11

Readme

Open in Codespaces

Práctica Espree logging

##Saúl Sosa Díaz

Indicar los valores de los argumentos

Para indicar los valores de los argumentos se ha creado la siguiente función:

/**
  * @brief Agrega código de registro de eventos antes del código de la función especificada en el nodo.
  * @function
  * @param {Object} node - El nodo del árbol de análisis sintáctico que contiene la función a la que se le agregará el registro de eventos.
  * @returns {void} 
  */
function addBeforeCode(node) {
  const name = node.id ? node.id.name : '<anonymous function>';
  let paramNames = '';
  if (node.params.length) {
    paramNames = "${" + node.params.map(param => param.name).join("}, ${") + "}";
  }
  const lineN = node.loc.start.line;
  const beforeCode = "console.log(`Entering " + name + "(" + paramNames + ") at line " + lineN + "`);";
  const beforeNodes = espree.parse(beforeCode, { ecmaVersion: 12 }).body;
  node.body.body = beforeNodes.concat(node.body.body);
}

Opciones línea de comandos.

Para realizar este apartado se ha utilizado el paquete comander.
Para poder parsear la línea de comandos únicamente hay que pegar las siguientes líneas en el código:

import { program } from "commander";
import { createRequire } from "module";
const require = createRequire(import.meta.url);
const { version } = require("../package.json");

En estas líneas incluimos el módulo y la información de la versión que se encuentra en el .json.

A continuación debemos agregar las siguientes líneas:


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 agregar las funciones flechas tenemos que poner la comparación de node.type === 'ArrowFunctionExpression'. Se puede ver que soporta el mensaje de log con todas las funciones posibles.

/**
 * Agrega registro de eventos al código proporcionado y devuelve el código modificado.
 * @function
 * @param {string} code - El código al que se le agregará el registro de eventos.
 * @returns {string} El código modificado con el registro de eventos.
 */
function addLogging(code) {
  const ast = espree.parse(code, {ecmaVersion: 12, loc: true});
  estraverse.traverse(ast, {
    enter: function (node, parent) {
      if (node.type === 'FunctionDeclaration' ||
          node.type === 'ArrowFunctionExpression' ||
          node.type === 'FunctionExpression') {
            addBeforeCode(node);
          }
    }
  })
  return escodegen.generate(ast);
}

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

Para poder agregar los números de línea debemos agregar el parámetro loc a true, que indica la localización de la sentencia. El siguiente código pertenece a la función anterior.

const ast = espree.parse(code, {ecmaVersion: 12, loc: true});

Tests and Covering

Se han agregado algunos tests muy interesantes como:

//Lamadas recursivas
const a = function (n) {
  if (n === 0) {
    return 1;
  } else {
    return n*a(n-1);
  }
}
a(5);
//Comprobar que no parsea funciones comentadas
/*
function aserejedejadeje() {
  return "Las ketchup"
}
*/
function main() {
  a = 1 + 1;
}
// Comprobar que no pilla funciones en strings
let a = "function aserejedejadeje => {return \"Las ketchup\"}"
function main() {
  a = 1 + 1;
}

Para el apartado de integración continua se ha utilizado github actions Para ello debemos tener una carpeta .github en nuestro repositorio, y dentro de ella una carpeta llamada workflows. Aquí implementaremos un fichero .yml que tendrá el siguiente contenido.

# Write your workflow for CI here
name: CI

# Controls when the workflow will run
on:
  # Triggers the workflow on push or pull request events but only for the $default-branch branch
  push:
    branches: [ main ]
      
  pull_request:
    branches: [ main ]
  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # This workflow contains a single job called "build"
  build:
    # The type of runner that the job will run on
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os:
          - ubuntu-latest
          - macos-latest
          - windows-latest
        node_version: [ 16.x]
        architecture:
          - x64

    name: Node ${{ matrix.node_version }} - ${{ matrix.architecture }} on ${{ matrix.os }}
    steps:
      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
      - uses: actions/checkout@v2 
      - name: setup node
        uses: actions/setup-node@v3
        with:
          node-version: ${{ matrix.node_version }}
          architecture: ${{ matrix.architecture }}
      - run: npm ci
      - run: npm test

Este script se ejecuta cuando hay un push o una pull request en la rama main.

Una muestra de la ejecución de este script:

Se ha utilizado la herramienta c8 porque nyc no soporta los modulos ES.

Librería npm.

Se ha publicado correctamente la librería en npm en el siguiente enlace.

Se ha probado en el directorio de la práctica anterior que se ha podido instalar y funciona correctamente.

Documentación.

Para la documentación del código se han utilizado comentarios estilo JSDoc. Y se ha utilizado la herramienta jsdoc-to-markdown para la creación de un readme automático que se encuentra en la carpeta /doc.

Scripts del programa.

En el fichero package.json se han incluido scripts para la ejecución del programa:

"test": "mocha test/test.mjs",
"exe": "node bin/log.js",
"cov": "c8 npm run test"