UNPKG

azurite

Version:

A lightweight server clone of Azure Blob Storage that simulates most of the commands supported by it with minimal dependencies.

23 lines (20 loc) 741 B
'use strict'; const os = require('os'), chalk = require('chalk'), env = require('./env'); exports.asciiGreeting = () => { const version = require('./../package.json').version; let art = ` _______ _ (_______) (_) _ _______ _____ _ _ ____ _ _| |_ _____ | ___ (___ ) | | |/ ___) (_ _) ___ | | | | |/ __/| |_| | | | | | |_| ____| |_| |_(_____)____/|_| |_| \\__)_____) ` art += 'Azurite, Version ' + version + os.EOL; art += 'A lightweight server clone of Azure Blob Storage' + os.EOL; art += `Azurite is listening on ${env.port}` + os.EOL; console.log(chalk.cyan(art)); }