What is robots-parser?
The robots-parser npm package is a tool for parsing robots.txt files, which are used to manage and control the behavior of web crawlers. This package allows you to easily interpret the rules defined in a robots.txt file and determine whether a specific user-agent is allowed to access a particular URL.
What are robots-parser's main functionalities?
Parse robots.txt
This feature allows you to parse a robots.txt file and check if a specific URL is allowed or disallowed for a given user-agent. In the example, the parser checks if 'Googlebot' is allowed to access '/private/' and '/public/' URLs.
const robotsParser = require('robots-parser');
const robotsTxt = `
User-agent: *
Disallow: /private/
`;
const parser = robotsParser('http://example.com/robots.txt', robotsTxt);
console.log(parser.isAllowed('http://example.com/private/', 'Googlebot')); // false
console.log(parser.isAllowed('http://example.com/public/', 'Googlebot')); // true
Check crawl delay
This feature allows you to retrieve the crawl delay specified for a particular user-agent. In the example, the parser retrieves the crawl delay for 'Googlebot', which is set to 10 seconds.
const robotsTxt = `
User-agent: Googlebot
Crawl-delay: 10
`;
const parser = robotsParser('http://example.com/robots.txt', robotsTxt);
console.log(parser.getCrawlDelay('Googlebot')); // 10
Get sitemap URLs
This feature allows you to extract sitemap URLs from a robots.txt file. In the example, the parser retrieves two sitemap URLs specified in the robots.txt file.
const robotsTxt = `
Sitemap: http://example.com/sitemap.xml
Sitemap: http://example.com/sitemap2.xml
`;
const parser = robotsParser('http://example.com/robots.txt', robotsTxt);
console.log(parser.getSitemaps()); // ['http://example.com/sitemap.xml', 'http://example.com/sitemap2.xml']
Other packages similar to robots-parser
robots-txt-parser
The robots-txt-parser package is another tool for parsing robots.txt files. It provides similar functionality to robots-parser, allowing you to check if a URL is allowed for a specific user-agent, retrieve crawl delays, and extract sitemap URLs. However, robots-txt-parser has a slightly different API and may offer additional features such as asynchronous parsing.
robotstxt
The robotstxt package is a robust library for parsing and interpreting robots.txt files. It offers comprehensive support for all the directives in a robots.txt file and provides a user-friendly API. Compared to robots-parser, robotstxt may offer more advanced features and better performance for large-scale applications.
Robots Parser
NodeJS robots.txt parser.
It currently supports:
- User-agent:
- Allow:
- Disallow:
- Sitemap:
- Crawl-delay:
- Host:
- Paths with wildcards (*)
Usage
var robotsParser = require('robots-parser');
var robots = robotsParser('http://www.example.com/robots.txt', [
'User-agent: *',
'Disallow: /dir/',
'Disallow: /test.html',
'Allow: /dir/test.html',
'Allow: /test.html',
'Crawl-delay: 1',
'Sitemap: http://example.com/sitemap.xml',
'Host: example.com'
].join('\n'));
robots.isAllowed('http://www.example.com/test.html', 'Sams-Bot/1.0'); // false
robots.isAllowed('http://www.example.com/dir/test.html', 'Sams-Bot/1.0'); // true
robots.isDisallowed('http://www.example.com/dir/test2.html', 'Sams-Bot/1.0'); // true
robots.getCrawlDelay('Sams-Bot/1.0'); // 1
robots.getSitemaps(); // ['http://example.com/sitemap.xml']
robots.getPreferedHost(); // example.com
isAllowed(url, [ua])
boolean or undefined
Returns true if crawling the specified URL is allowed for the specified user-agent.
This will return undefined
if the URL isn't valid for this robots.txt.
isDisallowed(url, [ua])
boolean or undefined
Returns true if crawling the specified URL is not allowed for the specified user-agent.
This will return undefined
if the URL isn't valid for this robots.txt.
getCrawlDelay([ua])
number or undefined
Returns the number of seconds the specified user-agent should wait between requests.
Returns undefined if no crawl delay has been specified for this user-agent.
getSitemaps()
array
Returns an array of sitemap URLs specified by the sitemap:
directive.
getPreferredHost()
string or null
Returns the preferred host name specified by the host:
directive or null if there isn't one.
License
The MIT License (MIT)
Copyright (c) 2014 Sam Clarke
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.