npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@oawu/cli-progress

v1.0.22

Published

🚀 轉轉轉,現在跑到哪裡惹?

Downloads

48

Readme

OA's Node.js Cli Progress

OA 的終端機進度工具 🚀

說明

終端機上使用 Node.js「進度工具」

@oawu/cli-progress

安裝

npm install @oawu/cli-progress

使用

引入 require('@oawu/cli-progress') 即可使用,如下範例:


  const Progress = require('@oawu/cli-progress')
  Progress.title('標題', '副標題')
  Progress.total(3)

  setTimeout(_ => {
    Progress.advance
    
    setTimeout(_ => {
      Progress.advance

      setTimeout(_ => {
        Progress.done()
      }, 1000)
    }, 1000)
  }, 1000)

設定

  • 使用色彩器(@oawu/xterm),於一開始使用 Progress.option.color = true 即可,預設為 false

  • 設定左邊空格基礎 Progress.option.space = 2,預設為 3

  • 設定讀取中

    • 顯示:於一開始使用 Progress.option.loading = "⠦⠧⠇⠏⠉⠙⠹⠸⠼⠴⠤⠦",預設為 ⠦⠧⠇⠏⠉⠙⠹⠸⠼⠴⠤⠦
    • 顏色:於一開始使用 Progress.option.loading.color = Xterm.red,預設為 Xterm.yellow
  • 設定主標題顏色,於一開始使用 Progress.option.title.color = Xterm.red,預設為 Xterm.gray

  • 設定小標題顏色,於一開始使用 Progress.option.subtitle.color = Xterm.red,預設為 Xterm.gray

  • 設定百分比顏色,於一開始使用 Progress.option.percent.color = Xterm.red,預設為 Xterm.gray

  • 設定數值顏色,於一開始使用 Progress.option.index.color = Xterm.red,預設為 Xterm.dim

  • 設定 done 顏色,於一開始使用 Progress.option.done.color = Xterm.red,預設為 Xterm.green

  • 設定 fail 顏色,於一開始使用 Progress.option.fail.color = Xterm.red,預設為 Xterm.red

  • 設定主標題符號

    • 顯示:於一開始使用 Progress.option.header = "!",預設為
    • 顏色:於一開始使用 Progress.option.header.color = Xterm.red,預設為 Xterm.purple
  • 設定小標題符號

    • 顯示:於一開始使用 Progress.option.newline = "!",預設為
    • 顏色:於一開始使用 Progress.option.newline.color = Xterm.red,預設為 Xterm.dim.purple
  • 設定分隔符號

    • 顯示:於一開始使用 Progress.option.dash = "!",預設為
    • 顏色:於一開始使用 Progress.option.dash.color = Xterm.red,預設為 Xterm.dim
  • 設定點點點符號

    • 顯示:於一開始使用 Progress.option.dot = "!",預設為
    • 顏色:於一開始使用 Progress.option.dot.color = Xterm.red,預設為 Xterm.dim.lightBlack

以下為基本設定範例與執行結果:


  const Progress = require('@oawu/cli-progress')
  Progress.option.color = true // 使用顏色
  Progress.option.done.color = text => Xterm.lightBlue(text).dim() // done 時顯示為細體藍色
  Progress.option.fail.color = Xterm.red // fail 時為紅色
  Progress.option.header = '➜' // 主標題符號改為 `➜`
  Progress.option.header.color = Xterm.lightGray // 主標題符號顏色改為亮灰色

  // 開始執行
  Progress.title('標題', '副標題')
  Progress.total(3)

  setTimeout(_ => {
    Progress.advance
    
    setTimeout(_ => {
      Progress.advance

      setTimeout(_ => {
        Progress.done()
      }, 1000)
    }, 1000)
  }, 1000)

執行中:

@oawu/cli-progress

完成:

@oawu/cli-progress