Document not found (404)
+This URL is invalid, sorry. Please use the navigation bar or search to continue.
+ +diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..f173110 --- /dev/null +++ b/.nojekyll @@ -0,0 +1 @@ +This file makes sure that Github Pages doesn't process mdBook's output. diff --git a/404.html b/404.html new file mode 100644 index 0000000..f48780a --- /dev/null +++ b/404.html @@ -0,0 +1,216 @@ + + +
+ + +This URL is invalid, sorry. Please use the navigation bar or search to continue.
+ +Spider-RS is the fastest web crawler and indexer written in Rust.
+Spider powers some big tools and helps bring the crawling aspect to almost no downtime with the correct setup, view the spider project to learn more.
+Node.js powerhouse crawling in a few lines!
+import { Website } from "@spider-rs/spider-rs";
+
+const website = new Website("https://rsseau.fr");
+
+await website.crawl();
+
+console.log(website.getLinks());
+
+
+