Socket
Socket
Sign inDemoInstall

dashindex

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dashindex

Inverse Index Builder for full text searching in any Document Database


Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

-.index

Inverse Index Builder for full text searching in any Document Database

Usage

Install dashindex:

npm install dashindex

Use in your NodeJS App:

const dashindex = require('dashindex'); //Import DashIndex
const data = "The quick brown fox jumps over the lazy dog"; //Sentence/Paragraph/Essay to build index for
var result = dashindex.buildIndex(data); // Build index for data
// { KK: 1, BRN: 1, FKS: 1, JMP: 1, LS: 1, TK: 1 }
// SAVE TO DATABASE
var query = dashindex.buildQuery(data);
// [ 'KK', 'BRN', 'FKS', 'JMP', 'LS', 'TK' ]
// DISPATCH QUERY TO DATABASE

For a reference implementation on RethinkDB, see: -.index.rethinkdb

Keywords

FAQs

Package last updated on 07 Apr 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc