Elastico is an API to easialy connect a node application with elastic search.
Install it
npm install elastico
Use on your projects
var Elastico = require('elastico').Elastico;
var client = new Elastico();
client.getIndex('my_index','my_type', 'my_key', function(data){
console.log(data);
};You can find some reference in how to use elastico inside the Annoted Source Code
Elastico is released under the MIT license: