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

markdown-links-library

v0.4.0

Published

Markdown Links Library es una herramienta que lee , analiza y reporta una estadística de los links que se encuentran en archivos Markdown

Downloads

3

Readme

Tabla de contenido

1. Descripción ✏

Markdown-links-library es una libreria que te permite leer , analizar y reportar un analisis de los links que se encuentran en archivos Markdown.

** md-links ** facilita el proceso de:

  • Proporcionar información básica sobre enlaces de los archivos .md
  • Proporcionar información estadística sobre enlaces en archivos .md
  • Validar enlaces que se encientran en los archivos .md
  • Reportar links repetidos.

2. Documentación 📝

2.1 Instalación 🖥

  • Instalar por npm:
npm i markdown-links-library

** md-links ** funciona si ya tiene instalado nodejs y, por lo tanto, también npm, que se instala junto con node.

2.2 Uso🖥

API 📁

Para ejecutar la libreria utiliza este comando:

$  md-links 

CLI (interfaz de línea de comandos) 📁

Después de iniciar la libreria :

  • Introduzca su ruta absoluta/relativa
  • Eliga la opción de tu preferencia (--basic , --validate ,--stats ,--validate & --stats , --statsPlus)

Si necesitas información acerca de las opciones , seleccione la última opción --Please, help

2.3 Opciones 🔨

--Basic 💡

La opción --basic muestra información general acerca de los links que se encuentran en los archivos Markdown . Obtendremos información acerca de la ruta del archivo , los enlaces que se encuentren y los textos de los enlaces.

--Validate 💡

La opción --validate , aparte de mostrar la información general del link (la ruta del archivo , los enlaces que se encuentren y los textos de los enlaces) se encarga de realizar la solicitud HTTP para saber el estado del link. Si el enlace funciona correctamente obtendremos un status de 200 y un texto de ok , si el enlace falla , el status será de 404 y el texto será de fail.

--Stats 💡

Con la opción -- stats obtendremos información acerca del número total de links , links únicos y links repetidos que se encuentran en el ruta que se ha analizado.

--Validate & --Stats 💡

Al combinar las opciones de --stats y --validate obtendremos información acerca del número total de links , links únicos , links repetidos y links rotos que se encuentran en el ruta que se ha analizado.

--StatsPlus 💡

Al usar la opción --StatsPlus obtendremos información acerca del número de veces en que aprarece cada link.

2.4 Diagrama de flujo ➡⬆➡

A continuacion se muestran los diagramas de flujo de la API y del CLI

API de diagrama de flujo ◀ ▶

Diagrama de flujo CLIx ◀ ▶

2.5 Documentación técnica de la biblioteca

  • ✅ JavaScript
  • ✅ Nodoe.js
  • ✅ Inquirer
  • ✅ Table
  • ✅ Mocks
  • ✅ RegEx
  • ✅ Chalk
  • ✅ Babel

3. Autor