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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@lppx/taskmgr

v1.0.3

Published

定时任务管理器

Readme

@lppx/taskmgr

定时任务管理器

oclif Version Downloads/week

Usage

$ npm install -g @lppx/taskmgr
$ tm COMMAND
running command...
$ tm (--version)
@lppx/taskmgr/1.0.3 linux-x64 node-v24.14.0
$ tm --help [COMMAND]
USAGE
  $ tm COMMAND
...

Commands

tm autocomplete [SHELL]

Display autocomplete installation instructions.

USAGE
  $ tm autocomplete [SHELL] [-r]

ARGUMENTS
  [SHELL]  (zsh|bash|powershell) Shell type

FLAGS
  -r, --refresh-cache  Refresh cache (ignores displaying instructions)

DESCRIPTION
  Display autocomplete installation instructions.

EXAMPLES
  $ tm autocomplete

  $ tm autocomplete bash

  $ tm autocomplete zsh

  $ tm autocomplete powershell

  $ tm autocomplete --refresh-cache

See code: @oclif/plugin-autocomplete

tm help [COMMAND]

Display help for tm.

USAGE
  $ tm help [COMMAND...] [-n]

ARGUMENTS
  [COMMAND...]  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for tm.

See code: @oclif/plugin-help

tm scripts add PATH

添加脚本到用户配置目录

USAGE
  $ tm scripts add PATH

ARGUMENTS
  PATH  脚本文件路径

DESCRIPTION
  添加脚本到用户配置目录

EXAMPLES
  $ tm scripts add ./script.ps1

See code: src/commands/scripts/add.ts

tm scripts list

列出用户配置目录下的所有脚本

USAGE
  $ tm scripts list

DESCRIPTION
  列出用户配置目录下的所有脚本

EXAMPLES
  $ tm scripts list

See code: src/commands/scripts/list.ts

tm scripts open

打开脚本文件目录

USAGE
  $ tm scripts open

DESCRIPTION
  打开脚本文件目录

EXAMPLES
  $ tm scripts open

See code: src/commands/scripts/open.ts

tm task create

向数据库中创建一条任务记录

USAGE
  $ tm task create [-i | -n <value> | -d <value> | -p <value> | -a <value> | -t
    daily|weekly|monthly|once|boot|logon | --time <value> | --enabled]

FLAGS
  -a, --args=<value>         执行参数
  -d, --description=<value>  任务描述
  -i, --interactive          交互式创建任务
  -n, --name=<value>         任务名称
  -p, --path=<value>         可执行文件路径
  -t, --trigger=<option>     触发类型 (daily|weekly|monthly|once|boot|logon)
                             <options: daily|weekly|monthly|once|boot|logon>
      --[no-]enabled         是否启用
      --time=<value>         开始时间 (HH:mm)

DESCRIPTION
  向数据库中创建一条任务记录

EXAMPLES
  $ tm task create -i

  $ tm task create --name "备份任务" --path "C:\backup.bat" --trigger daily --time "02:00"

  $ tm task create -n "清理任务" -p "C:\clean.ps1" -t weekly --time "03:00" --args "-Force"

See code: src/commands/task/create.ts

tm task delete

从数据库中删除一条任务记录

USAGE
  $ tm task delete

DESCRIPTION
  从数据库中删除一条任务记录

EXAMPLES
  $ tm task delete

See code: src/commands/task/delete.ts

tm task list

列出数据库中的所有任务记录

USAGE
  $ tm task list [-d]

FLAGS
  -d, --detailed  显示详细信息

DESCRIPTION
  列出数据库中的所有任务记录

EXAMPLES
  $ tm task list

  $ tm task list --detailed

See code: src/commands/task/list.ts

tm task sync

将数据库中的任务同步到 Windows 系统

USAGE
  $ tm task sync [-v]

FLAGS
  -v, --verbose  显示详细的同步信息

DESCRIPTION
  将数据库中的任务同步到 Windows 系统

EXAMPLES
  $ tm task sync

  $ tm task sync --verbose

See code: src/commands/task/sync.ts

tm tsk add TASKNAME

创建定时任务

USAGE
  $ tm tsk add TASKNAME [-i |  |  | [-p <value> |  | [--arguments <value> --path <value>]]] [--description
    <value>] [--time <value>] [--trigger boot|daily|logon|monthly|once|weekly]

ARGUMENTS
  TASKNAME  任务名称

FLAGS
  -i, --psi                  交互式方式选择现有 PowerShell 脚本创建任务
  -p, --ps-script=<value>    指定PowerShell 脚本路径,自动使用 powershell.exe 执行
      --arguments=<value>    执行参数
      --description=<value>  任务描述
      --path=<value>         可执行文件路径
      --time=<value>         [default: 09:00] 任务开始时间 (HH:mm)
      --trigger=<option>     [default: daily] 触发类型: daily, weekly, monthly, once, boot, logon
                             <options: boot|daily|logon|monthly|once|weekly>

DESCRIPTION
  创建定时任务

EXAMPLES
  交互式选择现有 PowerShell 脚本创建任务

    $ tm tsk add testTask --psi

See code: src/commands/tsk/add.ts

tm tsk del

删除定时任务

USAGE
  $ tm tsk del [-i | -n <value>]

FLAGS
  -i, --interactive       交互式选择任务
  -n, --taskName=<value>  任务名称

DESCRIPTION
  删除定时任务

EXAMPLES
  $ tm tsk del -n myTask

See code: src/commands/tsk/del.ts

tm tsk list

列出所有定时任务

USAGE
  $ tm tsk list [--multi]

FLAGS
  --[no-]multi  使用多行格式显示任务详情

DESCRIPTION
  列出所有定时任务

EXAMPLES
  $ tm tsk list

  $ tm tsk list --multi

See code: src/commands/tsk/list.ts

tm ui

启动 Web UI 服务

USAGE
  $ tm ui [-p <value>]

FLAGS
  -p, --port=<value>  [default: 3000] 指定服务端口

DESCRIPTION
  启动 Web UI 服务

EXAMPLES
  $ tm ui

  $ tm ui --port 8080

See code: src/commands/ui/index.ts

tm version

USAGE
  $ tm version [--json] [--verbose]

FLAGS
  --verbose  Show additional information about the CLI.

GLOBAL FLAGS
  --json  Format output as json.

FLAG DESCRIPTIONS
  --verbose  Show additional information about the CLI.

    Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.

See code: @oclif/plugin-version

tm which

Show which plugin a command is in.

USAGE
  $ tm which [--json]

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Show which plugin a command is in.

EXAMPLES
  See which plugin the `help` command is in:

    $ tm which help

  Use colon separators.

    $ tm which foo:bar:baz

  Use spaces as separators.

    $ tm which foo bar baz

  Wrap command in quotes to use spaces as separators.

    $ tm which "foo bar baz"

See code: @oclif/plugin-which