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

kolchoz

v1.0.1

Published

Calculate your earnings in real-time based on your rate and country-specific working hours.

Downloads

137

Readme

🐴 kolchoz

A fun, lightweight CLI tool to calculate your earnings in real time! Enter your rate (monthly, daily, or hourly), and let the tool show you how much you've earned every second — perfect for tracking productivity or just having a laugh.

🚀 Features

  • Real-time earning tracker – watch your earnings grow by the second.
  • Multiple rate types – supports monthly, daily, or hourly rates.
  • Custom currency support – defaults to your country's currency but allows customization.
  • Compact mode – minimalist output for discreet and distraction-free tracking.

🛠️ Installation

npm install -g kolchoz

📖 Usage

CLI Example

Track your earnings with a simple command:

kolchoz PL -m 15000
# or without installation
npx kolchoz PL -m 15000

Output:

0.03 PLN | 1s
0.05 PLN | 2s
0.08 PLN | 3s
...

Options

  • <country>: Your country code (e.g., US, PL) to determine the working hours for the current month and the currency.
  • -m, --monthly <rate>: Your monthly rate (e.g., salary).
  • -d, --daily <rate>: Your daily rate.
  • -h, --hourly <rate>: Your hourly rate.
  • -c, --currency <currency>: (Optional) Specify a custom currency instead of the default for your country.
  • -s, --compact: Show a minimal, compact output format.

Examples

Monthly Rate

kolchoz PL -m 4000

This calculates your earnings per second based on a $4,000 monthly salary in Poland.

Daily Rate

kolchoz PL -d 200

This calculates your earnings per second with a daily rate of 200 PLN.

Compact Output

kolchoz PL -h 20 -s

Output:

0.01 | 0:01
0.01 | 0:02
0.02 | 0:03
...

🔧 API

If you want to use the functionality programmatically, you can import the core function:

getRatePerSecond(options: Options & Rate): { currency: string; ratePerSecond: number }

Calculates the earnings per second based on the provided rate and country.

  • options:
    • country: (string) A valid ISO 3166-1 alpha-2 country code.
    • currency: (optional) Override the default currency for the specified country.
    • Rate one of:
      • hourly: (number)
      • daily: (number)
      • monthly: (number)

Example

import getRatePerSecond from 'kolchoz';

const { ratePerSecond, currency } = getRatePerSecond({
  country: 'US',
  monthly: 5000
});

console.log(`Earning ${ratePerSecond.toFixed(6)} ${currency} per second!`);

🌟 Why "kolchoz"?

The name is inspired by the word "kolkhoz" referring to a Soviet collective farm. It’s a tongue-in-cheek reference to the grind of daily work, making it a perfect fit for a tool that tracks your "earnings under the clock."