只有黑白的色調對於比較複雜的命令列程式來說就顯得太單調了,我們可以為命令列程式增加樣式使得程式更加友好!
安裝package: npm install -s chalk
#!/bin/env node
const chalk = require('chalk');
const log = console.log;
// pass in multiple arguments
log(chalk.blue('hello', 'world!', 'foo', 'bar', 'biz', 'baz'));
// nest styles
log(chalk.red('hello', chalk.underline.bgblue('world') + '!'));
log(`
cpu: $
ram: $
disk: $
`);const error = chalk.bold.red;
const warning = chalk.keyword('orange');
console.log(error('error!'));
console.log(warning('warning!'));
progress是當前最流行的用於渲染進度條的npm包。
var progressbar = require('progress');
var bar = new progressbar(':bar :current/:total', );
var timer = setinterval(function () else if (bar.curr === 5)
}, 1000);
nodeJS生成xlsx以及設定樣式
參考 文字的水平對齊方式應該是 left center right 三個值才對 安裝依賴 npm install xlsx style node xlsx xlsx,安裝的依賴版本 把以上三個js檔案拷貝到自定義目錄,如node xlsx c 修改 node xlsx c index.js xlsx...
WAP 手機終端 CSS 樣式實戰
1.在div標籤中可以使用line height屬性,其他標籤中最好不要使用 2.如需在頁面中加入背景,由於各種手機適配不一樣,應統一在div標籤中加入背景 3.單選框radio和多選框checkbox在不同的手機上顯示的樣式不一樣。例如 blackberry上顯示為黑點和黑框。你可以採取下拉列表框...
顏色和樣式字串
預設b藍色 八中內建顏色 b blue 藍色 g green 綠色 r red 紅色 c cyan 青色 m magenta 品紅 y yellow 黃色 k black 黑色 w white 白色 其它三種表示方法 plt.plot data,color 0.2 灰度表示法 在color直接寫數字...