菜单 学习猿地 - LMONKEY

VIP

开通学习猿地VIP

尊享10项VIP特权 持续新增

知识通关挑战

打卡带练!告别无效练习

接私单赚外块

VIP优先接,累计金额超百万

学习猿地私房课免费学

大厂实战课仅对VIP开放

你的一对一导师

每月可免费咨询大牛30次

领取更多软件工程师实用特权

入驻
54
0

ASCII Art

原创
05/13 14:22
阅读数 67163

ASCII Art

https://npms.io/search?q=ASCII art

ASCII Art

Text to ASCII Art Generator (TAAG)

http://patorjk.com/software/taag/#p=testall&h=0&v=0&f=Fuzzy&t=xgqfrms

cowsay

https://www.npmjs.com/package/cowsay

$ npm install -g cowsay

$ cowsay JavaScript FTW!
# OR
$ cowthink node.js is cool

https://github.com/sindresorhus/cows

figlet & colors

https://www.npmjs.com/package/figlet

https://github.com/patorjk/figlet.js


// libs
const program = require("commander");
const shell = require("shelljs");
// const fs = require("fs");
const chalk = require("chalk");
const colors = require("colors");
const clear = require("clear");
const figlet = require("figlet");


// clear();
console.log(
    chalk.yellow(
        figlet.textSync("hui-cli",{
            horizontalLayout: "full",
        }),
    )
);

// libs
const program = require("commander");
const shell = require("shelljs");
const chalk = require("chalk");
const colors = require("colors");
const clear = require("clear");
const figlet = require("figlet");

// build-in
// const fs = require("fs");

// json
const jsonObj = require("./package.json");

// process.argv
const args = process.argv.slice(2) || [];

const log = console.log;

// clear();
// console.log(
//     colors.green(
//         figlet.textSync("hui-cli",{
//             horizontalLayout: "full",
//         }),
//     )
// );
// console.log(
//     chalk.yellow(
//         figlet.textSync("hui-cli",{
//             horizontalLayout: "full",
//         }),
//     )
// );
console.log(
    chalk.rgb(0, 255, 0).bgBlack(
        figlet.textSync("xgqfrms",{
            horizontalLayout: "full",
        }),
    )
);


https://en.wikipedia.org/wiki/ASCII_art

https://www.asciiart.eu/


https://www.npmjs.com/package/ascii-art

https://www.npmjs.com/package/asciiart-logo

https://www.npmjs.com/package/image-to-ascii


ASCII & shit demo

// 使用函数 draw 绘制图形,反斜杠 "\" 请使用 "\\" 转义
draw("  _   _      _ _    __        __         _     _ 
 | | | | ___| | | __\\ \\      / /__  _ __| | __| |
 | |_| |/ _ \\ | |/ _ \\ \\ /\\ / / _ \\| '__| |/ _` |
 |  _  |  __/ | | (_) \\ V  V / (_) | |  | | (_| |
 |_| |_|\\___|_|_|\\___/ \\_/\\_/ \\___/|_|  |_|\\__,_|
")


https://leetcode-cn.com/u/xgqfrms



Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


发表评论

0/200
54 点赞
0 评论
收藏