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

micro-economics

v1.0.1

Published

Tool for making firm-level economics quick and easy

Downloads

13

Readme

micro-economics

Node Module for Calculating Firm-Level Economics

Usage:

  1. Npm install micro-economics
  2. Require in your .js file
var firm = require('micro-economics');

Library Contains Methods For:

Average Total Cost

firm.averageTotalCost(totalCost, quantity);

Average Variable Cost

firm.averageVariableCost(totalVAriableCost, quantity);

Fixed Cost

firm.fixedCost(averageTotalCost, averageVariableCost);

Total Cost

firm.totalCost(averageVariableCost, averageFixedCost, quantity);

Total Variable Cost

firm.totalVariableCost(averageVariableCost, averageFixedCost, quantity);

Total Fixed Cost

firm.totalFixedCost(tocalCost, totalVariabelCost);

Marginal Cost

firm.marginalCost(totalCost1, totalCost2, output1, output2);

Marginal Product

firm.marginalProduct(totalProduct1, totalProduct2, varFactor1, varFActor2);

Marginal Revenue

firm.marginalRevenuet(totalRevenue1, totalRevenue2, output1, output2);

Average Product

firm.averageProduct(totalProduct, varFactor);

Total Revenue

firm.totalRevenue(price, quantity);

Average Revenue

firm.totalVariableCost(averageVariableCost, averageFixedCost, quanitity);

Total Product

firm.totalVariableCost(averageVariableCost, averageFixedCost, quanitity);

Glossary:

  1. Average Total Cost (ATC) = Total Cost / Q (Output is quantity produced or ‘Q’)
  2. Average Variable Cost (AVC) = Total Variable Cost / QAverage
  3. Fixed Cost (AFC) = ATC – AVC
  4. Total Cost (TC) = (AVC + AFC) X Output (Which is Q)
  5. Total Variable Cost (TVC) = AVC X Output
  6. Total Fixed Cost (TFC) = TC – TVC
  7. Marginal Cost (MC) = Change in Total Costs / Change in Output
  8. Marginal Product (MP) = Change in Total Product / Change in Variable Factor
  9. Marginal Revenue (MR) = Change in Total Revenue / Change in Q
  10. Average Product (AP) = TP / Variable Factor
  11. Total Revenue (TR) = Price X Quantity
  12. Average Revenue (AR) = TR / Output
  13. Total Product (TP) = AP X Variable Factor
  14. Average Product (AP) = TP / Variable Factor