1.0.0 • Published 4 years ago

@tanshenghu/redis v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

@tanshenghu/redis

Installation

npm install @tanshenghu/redis --save-dev

or

yarn add @tanshenghu/redis --dev

DEMO

import redis from '@tanshenghu/redis';

/**
 * @param {object} [options.config] - node-session的基本参数配置
 * @param {number} [options.port = 6380] - redis服务端口号 默认 6380
 * @param {function} [options.callback] - 服务启动状态回调函数
 * @description 所有参数均是可选参数
 */
redis({
  callback: () => {
    console.log('redis服务已经启动成功');
  }
});