lightweight web based full text search engine
1.0.0
這是一個基於Web的輕質全文搜索引擎,直接在平面文本文件上工作。輸入查詢時,搜索結果會動態顯示。它基於nodejs-18 + express-4 。即使在大型文本文件上,它也非常快!
為了更輕鬆的設置和容器的部署,它也可以在Podman/Docker包裝中使用。
# Edit/replace the `data.txt` file with your own, before packaging it into a container!
# Build
podman build -t fulltext .
# Run
podman run -d --name fulltext -p 3000:3000 fulltext
firefox http://127.0.0.1:3000/
# Cleanup
podman stop fulltext
podman rm fulltext
podman rmi fulltext