0.2.0 • Published 8 years ago

xsearch v0.2.0

Weekly downloads
6
License
MIT
Repository
github
Last release
8 years ago

xsearch

Javascript implementation of xSearch.

npm Build Status Dependencies

Example

import XSearch from 'xsearch';

let xSearch = new XSearch();

xSearch.index(vGraph)
  .then(ignored => xSearch.search({
    index: 'person',
    fields: {
      name: 'bob'
    }
  }))
  .then(results => {
    console.log(results);
  })
  .catch(error => {
    console.error(error);
  })

Installation

npm install vgraph
0.2.0

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago