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

bizneo-clock

v0.1.4

Published

Personal CLI to clock in/out of Bizneo HR (chrono) from your terminal

Readme

bizneo-clock

CI

Clock in and out of Bizneo HR (the chrono / time-tracking feature) straight from your terminal.

bizneo-clock in       # start work
bizneo-clock pause    # take a break (pick a reason)
bizneo-clock resume   # back to work after a break
bizneo-clock out      # finish for the day
bizneo-clock status   # am I working, on a break, or clocked out?

Install

npm install -g bizneo-clock

Requires Node.js ≥ 18 and any installed Chromium-based browser (Chrome, Edge, Brave, Arc, Vivaldi, …), used only for the one-time browser login — no extra browser is downloaded. Firefox and Safari are not supported for login.

Login

Bizneo logins often go through SSO (Microsoft/Google), so bizneo-clock doesn't ask for a password. Instead it opens a browser, you sign in the way you normally do, and it captures the resulting session.

bizneo-clock login --company acme
# or just: bizneo-clock login   (it'll ask for your company subdomain)

A browser window opens at https://<company>.bizneohr.com. Complete the sign-in (including any 2FA). As soon as you're in, the tool grabs your session, prints your employee id, and closes the browser.

The session lasts about 30 days and auto-renews every time you use the tool, so in practice you log in once and forget about it. When it finally expires, any command will tell you to run bizneo-clock login again.

Commands

| Command | Aliases | What it does | | --- | --- | --- | | bizneo-clock login [-c <company>] | | Sign in via the browser and store the session | | bizneo-clock logout | | Remove the stored session | | bizneo-clock status [--json] | | Show whether you're working, on a break, or clocked out | | bizneo-clock in | start | Clock in (start work) | | bizneo-clock pause [-r <id>] [--comment <text>] | | Take a break with a reason (lunch, break…) | | bizneo-clock resume | | Resume after a break (or clock in if fully clocked out) | | bizneo-clock out [--comment <text>] | finish, stop | Clock out / finish work |

Notes:

  • There are three states: working, on a break (paused), and clocked out. A break is not a clock-out — you leave it with resume, not in.
  • Every command first checks your current state, so they're safe to run twice (e.g. in while already working does nothing; resume while working does nothing).
  • pause lists your company's configured reasons. Pick interactively, or pass --reason <id> / --reason <list-position> to skip the prompt.
  • After every action the tool re-reads your state from Bizneo and reports the real result rather than assuming the request worked.

How it works

Bizneo's web app (Phoenix + HTMX) drives clocking through:

  • GET /chrono/{employeeId}/hub_chrono — the live chronometer fragment (current state, CSRF token, shift id, pause reasons)
  • POST /chrono — clock in
  • PUT /chrono/{employeeId} — clock out, or pause (with a pause=<reasonId> field)

For each command bizneo-clock reads the chronometer fragment to get a fresh CSRF token and the current shift, then submits the matching request with your stored session cookie.

Privacy & storage

  • Your session is stored locally at ~/.config/bizneo-clock/config.json (permissions 600).
  • It contains your Bizneo session cookie, company host, employee id, and the user-agent used at login. Nothing is sent anywhere except to your own company's Bizneo instance.
  • bizneo-clock logout deletes that file.

Troubleshooting

  • "Could not launch a browser" — install a Chromium-based browser (Chrome, Edge, Brave…).
  • "session has expired" — run bizneo-clock login again.
  • 403 on an action — the session/CSRF went stale; re-run bizneo-clock login.

Disclaimer

Unofficial tool, not affiliated with Bizneo. It talks only to your own company's Bizneo instance using your own session. Use it in line with your employer's time-tracking policy.

License

MIT