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