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

ejercicio-2-npm

v0.0.0-development

Published

Paquete de demostración completo para fines de demostración que usa javascript para compilar tanto el formato del módulo ECMAScript (es decir, el módulo ESM o ES) como el formato del módulo CommonJS. Se puede usar en Node.js y aplicaciones de navegador.

Downloads

2

Readme

Core Node - NPM

Un paquete npm con fines de demostración que usa TypeScript para compilar tanto el formato del módulo ECMAScript (es decir, el módulo ESM o ES) como el formato del módulo CommonJS (CJS). Se puede usar en Node.js y aplicaciones de navegador.

Empezar

  1. Ejecute npm install en su terminal
  2. Luego ejecute npm run build
  3. Actualice el campo "nombre" del archivo package.json con su propio nombre de paquete. Ejemplo @nombre de usuario/nombre del paquete
  4. Cree una cuenta con npm si aún no tiene una. También asegúrese de habilitar [autenticación de dos factores] (https://docs.npmjs.com/configuring-two-factor-authentication)
  5. Inicie sesión en su cuenta npm en su terminal con npm login
  6. Ejecute npm publique --access=public para publicar su paquete

Pruebas

  1. Instale las dependencias de desarrollador usando el siguiente comando en su terminal npm i -D mocha @type/mocha chai @types/chai ts-node

  2. Cree un nuevo archivo .mocharc.json en el directorio raíz con los siguientes contenidos:

    {
      "extensión": ["ts"],
      "spec": "./**/*.spec.ts",
      "requerir": "ts-node/register"
    }
  3. Crea una carpeta tests

  4. Cree un archivo index.spec.ts en la carpeta tests

  5. Escriba pruebas unitarias en el archivo index.spec.ts para probar el código en index.ts

  6. Agregue una propiedad "test" en el archivo package.json y asígnele un valor de "mocha"

  7. Ejecute npm test en su terminal desde la carpeta raíz del proyecto

Información Extra

Este ejercicio es opcional pero mejora muchísimo el curriculum de desarrollador FullStack Web, la entrega debe realizarse mostrando los siguientes requisitios:

  1. Enlaces a github del paquete
  2. Añadir un changelog o archivo con las features nuevas.
  3. Consumir la libreria en algún proyecto de tipo node y tipo browser, para demostrar que los tipos de modulo CJS y ESM funcionan correctamente.
  4. Incluir los script de ejecucion de tareas opcionalmente para gestionar el versionado y otras cosas opcionales.
  5. Implementar un flujo automatizado completo como hemos visto en la diapositiva(Automating version management and publishing - Implementing security checks).

FAQ

Esta guía se ha realizado siguiendo el articulo de seguridad en el siguiente blog, para obtener ayuda y mas información visite la guía.