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

md-links-stefi

v0.1.2

Published

Librería que permite validar los links que se encuentren dentro de archivos Markdown(.md).

Downloads

5

Readme

Markdown Links

:pushpin: 1. Preámbulo

El Markdwon es un lenguaje de marcado ligero muy popular entre developers. Es usado en muchísimas plataformas que manejan texto plano (GitHub, foros, blogs, ...)

Estos archivos Markdown normalmente contienen links (vínculos/ligas) que muchas veces están rotos o ya no son válidos y eso perjudica mucho el valor de la información que se quiere compartir.

Por ello se ha implementado una herramienta usando Node.js (ingrese aquí), para que lea y analice archivos en formato Markdown, para verificar los links que contengan y reportar algunas estadísticas.

portada.png

:pushpin: 2. Diagrama de Flujo :clipboard:

I. Diagrama API

Diagram-MD-LINKS-API-drawio.png

II. Diagrama de Interfaz de Línea de Comando (CLI)

Diagram-MD-LINKS-CLI-drawio.png

:pushpin: 3. Instrucciones de Instalación de la librería MD :inbox_tray:

Interfaz de Línea de Comando (CLI)

A) Instalación

Para poder instalar el paquete de esta librería, debe ingresar el siguiente comando npm en su terminal:

   npm i md-links-stefi

B) Ejecución del comando

Para ejecutar los comandos a través del terminal debe ingresar lo siguiente:

   mdLinks <path-to-file> [options]

Donde:

  • path: Puede ser una Ruta absoluta o relativa al archivo o directorio.
  • options: Un objeto con únicamente la siguiente propiedad:
    • validate: Determina la validación de los links encontrados.
    • stats: Determina las estadisticas totales de los links encontrados.

CASO 1 : Cuando " options = --validate o --v"

Si pasamos la opción --validate, el módulo debe hacer una petición HTTP para averiguar si el link funciona o no. Si el link resulta en una redirección a una URL que responde ok, entonces consideraremos el link como ok, caso contrario el mensaje que indicará sera fail.

   mdLinks <path-to-file> --validate

o

   mdLinks <path-to-file> --v

Por ejemplo:

$ md-links ./some/example.md --validate
./some/example.md http://algo.com/2/3/ ok 200 Link a algo
./some/example.md https://otra-cosa.net/algun-doc.html fail 404 algún doc
./some/example.md http://google.com/ ok 301 Google

Vemos que el output en este caso incluye la palabra ok o fail después de la URL, así como el status de la respuesta recibida a la petición HTTP a dicha URL. En el terminal:

validate-V.png

donde:

  • href: URL encontrada.
  • text: Texto que aparecía dentro del link (<a>).
  • file: Ruta del archivo donde se encontró el link.
  • status: Código de respuesta HTTP.
  • message: Mensaje fail en caso de fallo u ok en caso de éxito.

CASO 2 : Cuando " options = --stats o --s "

Si pasamos la opción --stats el output (salida) será un texto con estadísticas básicas (total, unique) sobre los links.

   mdLinks <path-to-file> --stats

o

   mdLinks <path-to-file> --s

Ejemplo:

$ md-links ./some/example.md --stats
Total: 3
Unique: 3

En el terminal:

stats.png

CASO 3 : Cuando " options = -- validate --stats || --v --s || --stats -- validate || --s --v "

También podemos combinar --stats y --validate para obtener estadísticas que necesiten de los resultados de la validación.

   mdLinks <path-to-file> --validate --stats

   mdLinks <path-to-file> --stats --validate

o

   mdLinks <path-to-file> --v --s

   mdLinks <path-to-file> --v --s

Ejemplo:

$ md-links ./some/example.md --stats --validate
Total: 3
Unique: 3
Broken: 1

En el terminal:

validate-Stats.png

CASO 4 : Cuando " No hay Options"

Cuando no hay options, también podemos ingresar el siguiente comando que nos brindará información sobre el href, texto y file.

    mdLinks <path-to-file>

ejemplo:

validate-False.png

Donde:

  • href: URL encontrada.
  • text: Texto que aparecía dentro del link (<a>).
  • file: Ruta del archivo donde se encontró el link.

CASO 5 : Cuando " No hay Options ni path ingresados : HELP"

Ingresar el siguiente comando a la terminal, en caso de requerir ayuda o indicaciones de uso sobre la librería.

    mdLinks

ejemplo:

help-Only-Mdlinks.png

De igual manera, se mostrará el HELP (ayuda) si ingresa un comando de options erróneos o ajenos a la librería.

:rotating_light: NOTA :rotating_light:

Cuando se ingrese rutas (path) incorrectas o que no poseen archivos md o links. Mostrará un mensaje de error, indicandole al usuario que los datos que ingreso en el terminal, no son correctos.

message-Error.png

:computer: :books: ELABORADO POR:

  Stefani Martinez