microframework-elasticsearch
v0.1.0
Published
Elastic search integration with microframework
Downloads
7
Readme
ElasticSearch module for Microframework
Adds integration between elastic search and microframework.
Usage
Install module:
npm install --save microframework-elasticsearch
Simply register module in the microframework when you are bootstrapping it.
import {MicroFrameworkBootstrapper} from "microframework/MicroFrameworkBootstrapper"; import {ElasticSearchModule} from "microframework-elasticsearch/ElasticSearchModule"; new MicroFrameworkBootstrapper({ baseDirectory: __dirname }) .registerModules([ new ElasticSearchModule() ]) .bootstrap() .then(result => console.log('Module is running.')) .catch(error => console.error('Error: ', error));
ES6 features are used, so you may want to install es6-shim too:
npm install es6-shim --save
you may need to
require("es6-shim");
in your app.Now you can use elastic search module in your microframework.
Todos
- cover with tests
- more configuration
- add more docs