1.0.2 • Published 6 months ago

getlinkmap v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

getlinkmap

Overview

getlinkmap is a tool designed to get map of links from a given website. It crawls the website and finds internal and external links.

Installation

To install getlinkmap, you can use npm:

npm install getlinkmap

Usage

To generate a link map for a website, use the following command:

getLinkMap('https://www.ismetomerkoyuncu.com', { recursion: false, includeExternalLinks: true })
  .then(data => console.log('Link Map:', data))
  .catch(console.error);

// Save as Excel
getLinkMap('https://www.ismetomerkoyuncu.com', { recursion: false, includeExternalLinks: true }, './output')
  .then(filePath => console.log(`Excel file created at: ${filePath}`))
  .catch(console.error);

This will create a visual map of the links found on the website.

Contributing

Contributions are welcome! Please fork the repository and submit a pull request.

License

This project is licensed under the MIT License.

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago