1.0.0 • Published 1 year ago

@haroldadmin/robots-parser v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

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

1 year ago