# `x/sqlite_robotstxt` Deno Module [![Tags](https://img.shields.io/github/release/asg017/sqlite-robotstxt)](https://github.com/asg017/sqlite-robotstxt/releases) [![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/sqlite-robotstxt@${VERSION}/mod.ts) The [`sqlite-robotstxt`](https://github.com/asg017/sqlite-robotstxt) SQLite extension is available to Deno developers with the [`x/sqlite_robotstxt`](https://deno.land/x/sqlite_robotstxt) Deno module. It works with [`x/sqlite3`](https://deno.land/x/sqlite3), the fastest and native Deno SQLite3 module. ```js import { Database } from "https://deno.land/x/sqlite3@0.8.0/mod.ts"; import * as sqlite_robotstxt from "https://deno.land/x/sqlite_robotstxt@v${VERSION}/mod.ts"; const db = new Database(":memory:"); db.enableLoadExtension = true; sqlite_robotstxt.load(db); const [version] = db .prepare("select robotstxt_version()") .value<[string]>()!; console.log(version); ``` Like `x/sqlite3`, `x/sqlite_robotstxt` requires network and filesystem permissions to download and cache the pre-compiled SQLite extension for your machine. Though `x/sqlite3` already requires `--allow-ffi` and `--unstable`, so you might as well use `--allow-all`/`-A`. ```bash deno run -A --unstable ``` `x/sqlite_robotstxt` does not work with [`x/sqlite`](https://deno.land/x/sqlite@v3.7.0), which is a WASM-based Deno SQLite module that does not support loading extensions.