helio-resume
Version:
Get to know Helio via `npx helio-resume`
36 lines (32 loc) ⢠814 B
JavaScript
const welcome = require('cli-welcome')
const pkgJSON = require('./package.json')
welcome({
title: pkgJSON.name,
tagLine: 'Get to know Helio',
description: pkgJSON.description,
version: pkgJSON.version,
bgColor: '#fadc00',
color: '#000000',
bold: true,
clear: true,
})
const sleep = (delay) => new Promise((resolve) => setTimeout(resolve, delay))
async function printResume () {
await sleep(300)
console.log('Welcome to my resume')
await sleep(300)
console.log('Helio Alves')
await sleep(300)
console.log('Role: Software Developer')
await sleep(300)
console.log('bio')
await sleep(300)
console.log(`
Social:
š¤ Twitter: https://twitter.com/helioalves
š Github: https://github.com/alveshelio
š Blog: https://helioalves.com
`)
}
printResume()