KDesp73/scout
A fast, local-first search engine built in Zig
be8b4965b46fc1a7a819bf3cba09f370c0e9c64c
bdaab80c0f24624cb4e8b80bb7b34957263f67b8
A fast, local-first search engine built in Zig
scout
lets you crawl and index websites locally, then search them offline using full-text search powered by SQLite FTS5.
git clone https://github.com/KDesp73/scout && cd scout
zig build
scout init
scout crawl --seed "wikipedia.org" --infinite
scout query --input "your search terms here"
scout serve --ip 127.0.0.1 --port 8080
# Crawl a single host
scout crawl --seed "example.com" --depth 2
# View visited pages
scout list --pages
# Check the crawl queue
scout list --queue
# Perform a search
scout query --input "example term"
# Run just the parser
scout parse --host "example.com"