npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lunr-mutable-indexes

v2.3.2

Published

Mutable indexes for lunr.js 2.x or greater

Downloads

154,333

Readme

Lunr Mutable Indexes - Mutable indexes for lunr.js 2.1.x

With the release of lunr.js 2.0, lunr removed the ability to update existing indexes with new data. While the space benefits of this change are nice, some users need the flexibility of updating their indexes with new data. That's what this library is for.

Example

A simple search index can be created with the familiar lunr syntax; just substitute lunr-mutable for lunr.


var lunrMutable = require('lunr-mutable-indexes');

var index = lunrMutable(function () {
  this.field('title')
  this.field('body')

  this.add({
    "title": "Twelfth-Night",
    "body": "If music be the food of love, play on: Give me excess of it…",
    "author": "William Shakespeare",
    "id": "1"
  })
})

Now, with a mutable index, we can add...

index.add({
    "title": "Merchant of Venice",
    "body": "You speak an infinite deal of nothing.",
    "author": "William Shakespeare",
    "id": "2"
});

Remove...

index.remove({ id: "1" });

Or update existing documents.

index.update({
    "body": "With mirth and laughter let old wrinkles come.",
    "id": "2"
});

Index serialization also works, with the Index namespace accessible through the lunr-mutable-indexes object.

// Serialize an index:
var serialized = JSON.stringify(index);

// ...and deserialize it later:
var sameIndex = lunrMutable.Index.load(JSON.parse(serialized));

Caveats

The main tradeoffs with lunr-mutable-index were originally discussed in this PR in lunr.

  • Mutable indexes work by having a handle to their original builder - this inflates the index size a bit.
  • Changing a builder's tokenizer won't persist across serialization boundaries.
  • Gaps in builder.termIndex may build up when documents are deleted.
  • The index is completely rebuilt when a document is added/updated/removed

Work is ongoing to make improvements with these potential drawbacks, but please feel free to contribute fixes!

Thanks

I wrote a simple extension to lunr.js - I would like to thank the following people for helping to make my life easier:

  • Oliver Nightingale (@olivernn) for writing lunr.js in the first place!
  • John Kupko (@k00p) for making the library easier to use and helping with some of the NPM plumbing!