@involves/redis2-lib
v0.0.12
Published
[](https://buildkite.com/involves/nodejs-lib-redis2) [
const { RedisMiddleware } = require('@involves/redis2-lib')
const app = express()
app.use(RedisMiddleware.setRedisIntegration)
app.get('/:id', (req, res) => {
const record = await req.integrations.redis.get(req.query.id)
res.send(record)
})
How to run the tests
At the terminal, just type the command:
make test