typesense
Installation
SKILL.md
Typesense
Typesense is a fast, typo-tolerant search engine you can self-host. It offers sub-50ms search, built-in typo correction, faceting, filtering, and geo-search.
Installation
# Docker deployment
docker run -d --name typesense -p 8108:8108 \
-v typesense-data:/data \
typesense/typesense:27.1 \
--data-dir /data \
--api-key=xyz123 \
--enable-cors
# Node.js client
npm install typesense
# Python client
Related skills