Full-text search powered by MeiliSearch. Index your PostgreSQL data and expose a fast, typo-tolerant search API to your app — with nSelf managing the MeiliSearch instance for you.
Free Forever — no license key required. Requires the Search optional service (enabled via nself start --search).
# Enable the Search service first
nself start --search
# Then install the plugin
nself plugin install search
nself plugin status search# Create an index from a PostgreSQL table
nself plugin run search index create --name posts --table np_posts --fields title,body,tags
# Trigger a full re-index
nself plugin run search index sync --name postsGET /api/search?index=posts&q=nself+plugins&limit=10
# Response
{
"hits": [...],
"estimatedTotalHits": 42,
"processingTimeMs": 3,
"query": "nself plugins"
}