microframework-redis
v0.0.2
Published
Redis integration with microframework
Downloads
8
Readme
Redis module for Microframework
Adds integration between redis and microframework.
Usage
Install module:
npm install --save microframework-redisSimply register module in the microframework when you are bootstrapping it.
import {MicroFrameworkBootstrapper} from "microframework"; import {RedisModule} from "microframework-redis"; new MicroFrameworkBootstrapper({ baseDirectory: __dirname }) .registerModules([ new RedisModule() ]) .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 --saveyou may need to
require("es6-shim");in your app.Now you can use redis module in your microframework.
Todos
- cover with tests
- more configuration
- add more docs
