您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
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. }));