md-links-fioaf
v1.0.0
Published
It is a library that allows you to validate URLs inside markdown files. It will allow you to obtain: link status, total links, unique links and broken links.
Downloads
1
Maintainers
Readme
It is a library that allows you to validate URLs inside markdown files. It will allow you to obtain: link status, total links, unique links and broken links.
This project was created for Laboratoria Bootcamp - Lima 016 💛
Getting started 🚀
These instructions will allow you to install the library on your local machine for development.
See Deployment for the library developed with Node.js.
Installation 🔧
You can install it by npm:
$ npm i md-links-fioaf
Library usage 📋
const md-links = require('md-links-fioaf');
Guide to use ⚙️
You can run the library through the terminal:
mdlinks-checker <path-to-file> [options]
The paths entered can be relative or absolute and the options you can use are: --help
, --stats
, --validate
, or use both together --stats --validate
.
Case 1: md-links <path-to-file>
Case 2: md-links <path-to-file> --validate
Case 3: md-links <path-to-file> --stats
Case 4: md-links <path-to-file> --stats --validate
or md-links <path-to-file> --validate --stats
Case 5: md-links --help
Case 6: When information is omitted or incorrect
Flowcharts
API-flowchart
CLI-flowchart
Built with 🛠️
- Node.js - Used to create the library
- NPM - Manage packages
- Figlet - Generate banner
- Chalk - Used to style terminal output
- CommonJS - Handle modules
- node-fetch - Make HTTP calls