GitXplorerGitXplorer
i

redis-middleware

public
5 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
6d4512bfacb0d7552b66d827c25cdd528f918d48

Merge pull request #8 from italoacasas/greenkeeper-eslint-3.0.0

iitaloacasas committed 8 years ago
Unverified
092158ddc995040f0f4c68c8de3b55250c8c65de

chore(package): update eslint to version 3.0.0

ggreenkeeperio-bot committed 9 years ago
Unverified
15d011c6be5a9ace6ba6ecbbdf534c6e15816cc9

1.4.0

iitaloacasas committed 9 years ago
Unverified
1342819e3f4e55465849c328827507121c692637

1.3.0

iitaloacasas committed 9 years ago
Unverified
9526a81de0fa8277e5bec236c8ec3098fbba0321

adding error handling

iitaloacasas committed 9 years ago
Unverified
3dc723e7e08090e3db065c41c1db2f22c2f1dbf0

1.2.16

iitaloacasas committed 9 years ago

README

The README file for this repository.

Redis Express Middleware

Join the chat at https://gitter.im/italoacasas/redis-middleware npm version Build Status Dependency Status devDependency Status NPM

Express Middleware to handle Redis connections

Roadmap

  • 100% coverage test
  • Improving API

Installation

npm install --save redis-middleware

Example of use

const app = require('express')();
const redisMiddleware = require('redis-middleware');

app.use(redisMiddleware(redisPort, redisHost));

app.post('/', (req, res) => {
    req.redis.set(key, value);  
}

API

redisMiddleware(redisPort, redisHost, redisOptions)
  • redisPort (optional)
    • default = 6379
  • redisHost (optional)
    • default = localhost
  • redisOptions (optional)
    • default = {}

License

This software is licensed under the MIT License.

Copyright Italo A. Casas, 2016.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.