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

dookie-workit

v2.4.2

Published

Non-invasive Windows CLI session booter — launch profiles on demand

Readme

Workit

Non-invasive Windows CLI session booter. Launch named profiles of apps and URLs on demand.

What it is: One command opens your apps (browser, school tools, games, Discord, whatever you set up). Does not run at Windows login. Does not spy on you.

Who needs what: Windows PC + Node.js installed.

First time:

  1. Install: npm install -g dookie-workit
  2. Setup: workit init (pick Work, School, Games & apps, Minimal, or Blank)
  3. Go: workit or workit work opens your session

Every day: Type workit or workit <profile> when you start. Done.

Useful commands:

  • workit --dry-run — show what would open, open nothing
  • workit games --skip-pick — pinned apps only, skip the launch picker
  • workit list — see profile names
  • workit default school — change which profile runs with plain workit
  • workit config — see your settings file
  • workit reset — wipe setup, start over

Settings file: %APPDATA%\workit\config.json (edit by hand or re-run workit init)

What it is NOT: Not a startup manager. Not auto-start. Not Mac/Linux (Windows only). Not a standalone .exe yet — needs Node.

Install

npm install -g dookie-workit

Local development:

npm install
npm run build
npm link

Quick Start

workit init              # setup wizard (← Back on each step)
workit                   # launch default profile
workit games             # pinned apps launch; picker for folder/catalog items
workit games --skip-pick   # pinned apps only
workit list              # profile names
workit default work      # set default profile
workit rename old new     # rename a profile
workit delete games       # delete one profile
workit --dry-run          # preview without spawning
workit config            # show profiles
workit reset             # clear config

Profiles

Config v2 stores named profiles in %APPDATA%\workit\config.json:

{
  "configVersion": 2,
  "isInit": true,
  "defaultProfile": "work",
  "profiles": {
    "work": {
      "apps": [
        { "name": "Browser", "path": "C:\\...\\brave.exe", "attachUrls": true },
        { "name": "IDE", "path": "C:\\...\\Cursor.exe" }
      ],
      "urls": ["https://github.com"],
      "presetId": "work"
    },
    "school": {
      "apps": [
        { "name": "Browser", "path": "C:\\...\\brave.exe", "attachUrls": true },
        { "name": "Comms", "path": "ms-teams:" }
      ],
      "urls": ["https://classroom.google.com"],
      "presetId": "school"
    },
    "games": {
      "apps": [
        { "name": "Discord", "path": "C:\\...\\Discord\\Update.exe", "args": ["--processStart", "Discord.exe"] }
      ],
      "urls": [],
      "presetId": "game",
      "catalogGameIds": ["genshin", "zzz"],
      "customGamesFolder": "C:\\Users\\You\\Documents\\My Apps"
    }
  }
}
  • Presets — Work, School, Games & apps, Minimal, or Blank
  • Pinned apps — preset defaults plus any apps you add manually (always launch)
  • Apps folder — optional on any preset; items are prompted at launch (multi-select)
  • Launch picker — runs automatically when catalog or folder has items; skipped when empty
  • --skip-pick — skip the picker and launch pinned apps only
  • Blank preset — add apps one-by-one, then optionally an apps folder
  • attachUrls: true — profile URLs open in a new browser window (each URL as a tab)
  • Protocol handlersms-teams:, steam:, steam:// supported in app paths
  • Empty paths — skipped silently (no failed launch for unused slots)

Optional built-in catalog

During setup for Games & apps, you can add titles from the built-in catalog (LoL, Valorant, Genshin, ZZZ, Honkai, CS2, Elden Ring). These are prompted at launch alongside anything in your custom folder.

Apps folder (any preset)

During workit init, any preset can use an apps folder. Drop .json, .exe, or .lnk files in it:

{
  "name": "My App",
  "path": "D:\\Apps\\MyTool\\launch.exe",
  "args": []
}

Commands

| Command | Description | |---------|-------------| | workit [profile] | Launch profile (auto-prompts picker when apps folder/catalog has items) | | workit [profile] --skip-pick | Launch pinned apps only | | workit list | List profile names | | workit default <profile> | Set default profile | | workit rename <old> <new> | Rename a profile | | workit delete <profile> | Delete one profile (keeps others) | | workit --dry-run [profile] | Preview launches without starting apps | | workit init | Setup wizard, edit, or add profiles | | workit reset | Clear all configuration | | workit config | Show config and profile validity |

Migration from v1

Existing v1 configs (with browserPath, idePath, etc.) auto-migrate to a default profile on first run. If migration fails, run workit reset then workit init.

Principles

  • On-demand only — runs when you invoke it, never at login
  • No daemon — CLI exits after launch
  • No telemetry — config stays local
  • Lean — single bundled CLI, no GUI

Requirements

  • Windows 10/11
  • Node.js 18+

Development

npm install
npm run build
npm test
npm run dev    # watch mode

License

MIT