Downloads and builds Redis
Downloads and builds Redis
npm install --global redis-download
redis-download --version 5.0.3 --download-dir /my/download/directory
Or:
const redisDownload = require('redis-download');
redisDownload({ version: '5.0.3', downloadDir: '/my/download/directory' })
.then((downloadLocation) => {
console.log(`Downloaded Redis: ${downloadLocation}`);
});
version
defaults to the latest version and downloadDir
defaults to a temporary directory.
This is a Redis version of https://github.com/winfinit/mongodb-download