8000 GitHub - jhe/node-elasticsearch: NodeJS module for ElasticSearch.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jhe/node-elasticsearch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-elasticsearch

This is a module around the REST API for Elastic Search built for NodeJS.

Details

This works with node 0.4.x and with 0.2.x. I needed it for both and so wrote an http compatability layer.

Usage

 var lib = require('elasticsearch'), sys = require('sys'); //replace sys with util if you're on node 0.4.x
 lib.createClient(function(client) {
     client.query({query: {field: {field1: 'hai'}}}, function(err, results) {
         console.log(sys.inspect(results, true, 10));
     });
 });

API

Will go here when I'm ready to post it.

Requirements

  • NodeJS
  • Elastic Search
  • nodeunit (for testing)
  • The need for search

License

MIT

Trademarks?

Node.js™ is an official trademark of Joyent. This module is not formally related to or endorsed by the official Joyent Node.js open source or commercial project

About

NodeJS module for ElasticSearch.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0