Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

22 linhas
456B

  1. /*
  2. Example
  3. */
  4. var figlet = require('../../lib/node-figlet.js');
  5. /*
  6. Once this has been run:
  7. npm install figlet
  8. Use the below line instead of the above line
  9. */
  10. // var figlet = require('figlet');
  11. console.log(figlet.textSync('Hello World!', 'Standard'));
  12. console.log(figlet.textSync('Again, Hello World!', 'Graffiti'));
  13. console.log(figlet.textSync('Last time...', {
  14. font: 'Standard',
  15. horizontalLayout: 'full',
  16. verticalLayout: 'full'
  17. }));