Last active
March 31, 2019 13:44
-
-
Save digitalbocca/f3fb1c37948430d34703e74e0d14740f to your computer and use it in GitHub Desktop.
Mensagem quando inicia o servidor node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.listen(process.env.PORT, () => { | |
cfonts.say('edb', { | |
font: 'block', | |
colors: ['white', 'gray'] | |
}) | |
cfonts.say(`Servidor EDB funcionando na porta: ${process.env.PORT}`, { | |
font: 'console', | |
colors: ['black'], | |
background: 'green' | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment