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

@clocklimited/cf-text-search

v1.2.2

Published

Add full-text search functionality onto cf services

Downloads

448

Readme

cf-text-search

Add full-text search functionality onto cf services. Uses mongo's full text search functionality. Requires Mongo v2.6+.

Modifies the passed in query, adding the $text property as per http://docs.mongodb.org/manual/reference/operator/query/text/.

Installation

npm install cf-text-search

Usage

var textSearch = require('cf-text-search')

service.search = textSearch(service)

service.search('my search terms', function (err, results) {})

var search = textSearch(service)

  • service is a crud-service

search(searchTerms, query={}, options={}, cb)

  • searchTerms - a string which gets pass through to mongo's full text search, can be an array of strings
  • query - optional, an additional object query to filter the results
  • options - optional, any search options e.g. skip, limit
  • cb - the callback function, gets called with (err, results)

Score

The score of the document is returned on all documents as described here: http://docs.mongodb.org/manual/reference/operator/projection/meta/.

If using in conjunction with schemata, you'll need to add a score property to your schema so that it doesn't get stripped out.

Credits

Built by developers at Clock.

Licence

Licensed under the New BSD License