Skip to content

Instantly share code, notes, and snippets.

@mhemrg
Created November 15, 2020 10:23
Show Gist options
  • Save mhemrg/d2204b8b3011f18217b8c235165492a3 to your computer and use it in GitHub Desktop.
Save mhemrg/d2204b8b3011f18217b8c235165492a3 to your computer and use it in GitHub Desktop.
NodeJS Redis Configuration
const Redis = require("ioredis");
new Redis({
port: process.env.REDIS_PORT,
host: prcess.env.REDIS_HOST,
password: process.env.REDIS_PASSWORD,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment