https://github.com/mastilver/elasticsearch-bin
Binary wrapper for ElasticSearch - A search server based on Lucene https://www.elastic.co/products/elasticsearch
https://github.com/mastilver/elasticsearch-bin
Last synced: 17 days ago
JSON representation
Binary wrapper for ElasticSearch - A search server based on Lucene https://www.elastic.co/products/elasticsearch
- Host: GitHub
- URL: https://github.com/mastilver/elasticsearch-bin
- Owner: mastilver
- License: mit
- Created: 2015-11-30T21:00:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-12-23T12:59:25.000Z (over 9 years ago)
- Last Synced: 2026-05-27T09:26:28.713Z (about 2 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# elasticsearch-bin [](https://travis-ci.org/mastilver/elasticsearch-bin)
> Binary wrapper for [ElasticSearch](https://www.elastic.co/products/elasticsearch) - A search server based on Lucene.
Based on [flow-bin](https://github.com/flowtype/flow-bin)
## CLI
```
$ npm install --global elasticsearch-bin
```
```
$ elasticsearch --version
```
## API
```
$ npm install --save elasticsearch-bin
```
```js
const execFile = require('child_process').execFile;
const elasticsearch = require('elasticsearch-bin');
execFile(elasticsearch, ['--version'], (err, stdout) => {
console.log(stdout);
});
```
## License
MIT © [Thomas Sileghem](https://mastilver.com)