@haroldadmin/robots-parser
v1.0.0
Published
Parser for robots.txt
Downloads
1
Maintainers
Readme
@haroldadmin/robots-parser
A parser for robots.txt files.
Installation
npm install @haroldadmin/robots-parser
Usage
Use the parse
function to convert a robots.txt string into a parse tree.
import { parse } from "@haroldadmin/robots-parser";
const res = await fetch("https://www.google.com/robots.txt");
const robotsTxt = await res.text();
const parseTree = parse(robotsTxt);
console.log(JSON.stringify(parseTree));