getlinkmap
is a tool designed to get map of links from a given website. It crawls the website and finds internal and external links.
To install getlinkmap
, you can use npm:
npm install getlinkmap
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.
Contributions are welcome! Please fork the repository and submit a pull request.
This project is licensed under the MIT License.