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