Skip to content

haroldadmin/robots-parser

Repository files navigation

@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));

About

Parser for robots.txt files

Resources

License

Stars

Watchers

Forks

Packages

No packages published