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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@oawu/helper

v1.0.5

Published

🤝 一些常用的小工具

Downloads

5

Readme

OA's Node Helper

一些常用的小工具 🤝

說明

很簡單就是一個 OA 個人 Node.jsnpm 小幫手!

安裝

npm install @oawu/helper

使用

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


  const Helper = require('@oawu/helper')
  Helper.println('Hi~')

  const { Typeof } = Helper
  Helper.println(Typeof.str.or({}, '?'))

說明

目前可使用的功能如下:

  • clean ─ 清空終端機畫面
  • println ─ 很單純就是 印出後換行
  • scanDir ─ 掃描指定的目錄,第二參數決定是否掃瞄子目錄,第二參數預設為 true
  • exists ─ 檢查路徑是否存在
  • mkdir ─ 建立目錄,第二參數決定是否遞迴建立,第二參數預設為 false
  • access ─ 檢查路徑是否擁有權限,預設為 讀取權限
  • isDirectory ─ 檢查路徑是否為目錄
  • isFile ─ 檢查路徑是否為檔案
  • isSub ─ 檢查第一參數是否為第二字參數的子字串
  • verifyDirs ─ 檢查在路徑下的目錄是否存在,不存在則依序建立,第一參數為路徑,第二參數為路徑陣列
  • argv ─ 取得此次 node 指令的參數,第一參數為名稱,第二參數為預設值
  • Typeof ─ 檢查與處理格式,參考以下說明

Typeof

  • func ─ 檢查格式是否為 function,回傳值為 truefalse

  • bool ─ 檢查格式是否為 boolean,回傳值為 truefalse

  • object ─ 檢查格式是否為 object,回傳值為 truefalse

  • str ─ 檢查格式是否為 string,回傳值為 truefalse

  • num ─ 檢查格式是否為 number,回傳值為 truefalse

  • arr ─ 檢查格式是否為 array,回傳值為 truefalse

  • str.notEmpty ─ 檢查格式是否為 string 並且長度大於 0,回傳值為 truefalse

  • arr.notEmpty ─ 檢查格式是否為 array 並且數量大於 0,回傳值為 truefalse

  • func.or ─ 功能與 func 功能相同,當值 function 時,則回傳第二參數值

  • bool.or ─ 功能與 bool 功能相同,當值 boolean 時,則回傳第二參數值

  • object.or ─ 功能與 object 功能相同,當值 object 時,則回傳第二參數值

  • str.or ─ 功能與 str 功能相同,當值 string 時,則回傳第二參數值

  • num.or ─ 功能與 num 功能相同,當值 number 時,則回傳第二參數值

  • arr.or ─ 功能與 arr 功能相同,當值 array 時,則回傳第二參數值

  • str.notEmpty.or ─ 功能與 str.notEmpty 功能相同,當值 string 或長度為 0 時,則回傳第二參數值

  • arr.notEmpty.or ─ 功能與 arr.notEmpty 功能相同,當值 array 或數量為 0 時,則回傳第二參數值

  • func.do ─ 第二參數為 closure,功能與 func 功能相同,符合條件下即執行第二參數,並且回傳值為函式回傳值

  • bool.do ─ 第二參數為 closure,功能與 bool 功能相同,符合條件下即執行第二參數,並且回傳值為函式回傳值

  • object.do ─ 第二參數為 closure,功能與 object 功能相同,符合條件下即執行第二參數,並且回傳值為函式回傳值

  • str.do ─ 第二參數為 closure,功能與 str 功能相同,符合條件下即執行第二參數,並且回傳值為函式回傳值

  • num.do ─ 第二參數為 closure,功能與 num 功能相同,符合條件下即執行第二參數,並且回傳值為函式回傳值

  • arr.do ─ 第二參數為 closure,功能與 arr 功能相同,符合條件下即執行第二參數,並且回傳值為函式回傳值

  • str.notEmpty.do ─ 第二參數為 closure,功能與 str.notEmpty 功能相同,符合條件下即執行第二參數,並且回傳值為函式回傳值

  • arr.notEmpty.do ─ 第二參數為 closure,功能與 arr.notEmpty 功能相同,符合條件下即執行第二參數,並且回傳值為函式回傳值

  • func.do.or ─ 第二參數為 closure,功能與 func 功能相同,符合條件下即執行第二參數,回傳值為函式回傳值,若不符合條件,則回傳值為第三參數值

  • bool.do.or ─ 第二參數為 closure,功能與 bool 功能相同,符合條件下即執行第二參數,回傳值為函式回傳值,若不符合條件,則回傳值為第三參數值

  • object.do.or ─ 第二參數為 closure,功能與 object 功能相同,符合條件下即執行第二參數,回傳值為函式回傳值,若不符合條件,則回傳值為第三參數值

  • str.do.or ─ 第二參數為 closure,功能與 str 功能相同,符合條件下即執行第二參數,回傳值為函式回傳值,若不符合條件,則回傳值為第三參數值

  • num.do.or ─ 第二參數為 closure,功能與 num 功能相同,符合條件下即執行第二參數,回傳值為函式回傳值,若不符合條件,則回傳值為第三參數值

  • arr.do.or ─ 第二參數為 closure,功能與 arr 功能相同,符合條件下即執行第二參數,回傳值為函式回傳值,若不符合條件,則回傳值為第三參數值

  • str.notEmpty.do.or ─ 第二參數為 closure,功能與 str.notEmpty 功能相同,符合條件下即執行第二參數,回傳值為函式回傳值,若不符合條件,則回傳值為第三參數值

  • arr.notEmpty.do.or ─ 第二參數為 closure,功能與 arr.notEmpty 功能相同,符合條件下即執行第二參數,回傳值為函式回傳值,若不符合條件,則回傳值為第三參數值