![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@strangerlabs/tantivy
Advanced tools
NodeJS bindings for Tantivy
TODO: Fill out this long description.
Please note this is an unstable API. Until 1.0.0 is released, breaking changes may be published without a major version increment.
Clone this repository.
Then run the following in the project's root directory.
npm i
npm run build
# for for use with electron
npm run build-electron
const { Search, SchemaBuilder, TopDocs, QueryParser } = require('@strangerlabs/tantivy')
let search = new Search()
let schemaBuilder = new SchemaBuilder()
schemaBuilder.addTextField("_id", ["STRING"] )
let title = schemaBuilder.addTextField("title", ["TEXT", "STORED"] )
let year = schemaBuilder.addTextField("year", ["TEXT", "STORED"] )
let authors = schemaBuilder.addTextField("authors", ["TEXT", "STORED"] )
let url = schemaBuilder.addTextField("url", ["TEXT", "STORED"] )
search.buildSchema(schemaBuilder)
search.defaultSearchFields([title, year, authors, url])
search.createIndex('./data')
search.createIndexWriter(100000000)
let document = {
_id: "1",
title: "The Economic History of the Fur Trade: 1670 to 1870",
year: "2008",
authors: ["Ann M. Carlos, University of Colorado", "Frank D. Lewis, Queen’s University"],
url: "http://eh.net/encyclopedia/the-economic-history-of-the-fur-trade-1670-to-1870/"
}
search.addDoc(JSON.stringify(document))
search.commit()
search.loadSearchers()
let queryParser = new QueryParser(search, [title, year, authors, url])
let query = queryParser.parse("fur")
let collector = new TopDocs(10)
let results = search.topSearch(query, collector)
console.log(results)
Please browse to the examples folder for line-by-line documentation of the API.
StJohn Giddy @thecallsign
PRs accepted.
Small note: If editing the README, please conform to the standard-readme specification.
MIT © 2019 Stranger Labs, Inc.
FAQs
NodeJS bindings for Tantivy
We found that @strangerlabs/tantivy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.